From: brian Date: Thu, 24 Jun 2004 21:55:10 +0000 (+0000) Subject: Print df's return status in test_0. X-Git-Tag: v1_8_0_110~486^5~181 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=5ae82374cc1b95f2b007af5f343c8b21edf7f3a9;p=fs%2Flustre-release.git Print df's return status in test_0. --- diff --git a/lustre/tests/insanity.sh b/lustre/tests/insanity.sh index 9c05b27..c52e245 100755 --- a/lustre/tests/insanity.sh +++ b/lustre/tests/insanity.sh @@ -232,17 +232,17 @@ test_0() { echo "Failover MDS" facet_failover mds echo "Waiting for df pid: $DFPID" - wait $DFPID || return 1 + wait $DFPID || echo "df returned $?" && return 1 echo "Failing OST1" facet_failover ost1 echo "Waiting for df pid: $DFPID" - wait $DFPID || return 2 + wait $DFPID || echo "df returned $?" && return 2 echo "Failing OST2" facet_failover ost2 echo "Waiting for df pid: $DFPID" - wait $DFPID || return 3 + wait $DFPID || echo "df returned $?" && return 3 return 0 } run_test 0 "Fail all nodes, independently"