From: Loic Dachary Date: Mon, 20 Oct 2014 18:20:35 +0000 (-0700) Subject: tests: mon id is incorrectly skipped X-Git-Tag: v0.88~45^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=349eb518ba11bf02999d06b8d83d726c55cb1995;p=ceph.git tests: mon id is incorrectly skipped The argument is shifted and $1 should be used to get the mon id instead of $2. http://tracker.ceph.com/issues/9836 Fixes: #9836 Signed-off-by: Loic Dachary --- diff --git a/src/test/mon/mon-test-helpers.sh b/src/test/mon/mon-test-helpers.sh index 1766193a5887..b37780e42d1b 100644 --- a/src/test/mon/mon-test-helpers.sh +++ b/src/test/mon/mon-test-helpers.sh @@ -70,7 +70,7 @@ function kill_daemons() { function call_TEST_functions() { local dir=$1 shift - local id=$2 + local id=$1 shift setup $dir || return 1