From: Mikhail Pershin Date: Tue, 14 Jan 2014 14:58:33 +0000 (+0400) Subject: LU-4480 tests: set fail_val in sanity test_36f X-Git-Tag: 2.6.51~43 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F42%2F8842%2F4;p=fs%2Flustre-release.git LU-4480 tests: set fail_val in sanity test_36f The OBD_FAIL_OST_BRW_PAUSE_BULK needs fail_val to be passed as amount of seconds to wait or 0 for default value. That was not set to any of those values in test_36f. Patch set fail_val=0 along with fail_loc in test_36f Signed-off-by: Mikhail Pershin Change-Id: I3966a6c8a7f07fd6232a2f70329eb34cfdd95cee Reviewed-on: http://review.whamcloud.com/8842 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: James Simmons --- diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 8db4200..9258362 100755 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -4757,7 +4757,8 @@ check_mds() { reset_fail_loc () { echo -n "Resetting fail_loc on all nodes..." - do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true" + do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 \ + fail_val=0 2>/dev/null || true" echo done. }