From: Andreas Dilger Date: Wed, 7 Jan 2015 10:16:10 +0000 (-0700) Subject: LU-4223 tests: fix conf-sanity test_32 typo X-Git-Tag: 2.7.51~78 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=5da53bcb1d8c38157325505f6619d6b6c3d4db6a LU-4223 tests: fix conf-sanity test_32 typo The t32_wait_til_devices_gone() function incorrectly calls "lctl devices_list" instead of "lctl device_list" if there is a timeout waiting for the loop devices to be cleaned up. Since this is only used for debugging output after an error, it wasn't actually causing any additional failures. Signed-off-by: Andreas Dilger Change-Id: I858e789b16251835bce7af46e4f5233c95500c1e Reviewed-on: http://review.whamcloud.com/13265 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Jian Yu Reviewed-by: James Nunez Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index 65c0302..c6660d7 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -1528,7 +1528,7 @@ t32_wait_til_devices_gone() { done echo "waiting for dev on $node: dev $devices loop $loops given up" do_rpc_nodes $node "losetup -a" - do_rpc_nodes $node "$LCTL devices_list" + do_rpc_nodes $node "$LCTL device_list" return 1 }