From: Nathaniel Clark Date: Tue, 23 Apr 2013 15:56:23 +0000 (-0400) Subject: LU-3208 tests: Fix typo in replay-single/70b X-Git-Tag: 2.3.65~15 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=94bf32e0eee947dba897a17abe58eee4f1d0d4d6 LU-3208 tests: Fix typo in replay-single/70b Missing space in if statement, caused syntax error: replay-single.sh: line 1912 [: missing `]` Signed-off-by: Nathaniel Clark Change-Id: I2543f9b8fe41153d6109a64d2619a8443e700d9d Reviewed-on: http://review.whamcloud.com/6131 Reviewed-by: James Nunez Reviewed-by: Keith Mannthey Tested-by: Hudson Tested-by: Maloo Reviewed-by: Andreas Dilger --- diff --git a/lustre/tests/replay-single.sh b/lustre/tests/replay-single.sh index 07e7104..ed2531d 100755 --- a/lustre/tests/replay-single.sh +++ b/lustre/tests/replay-single.sh @@ -1911,7 +1911,7 @@ test_70b () { #LU-1897 wait for all dbench copies to start while ! check_for_process $clients dbench; do elapsed=$(($(date +%s) - start_ts)) - if [ $elapsed -gt $duration]; then + if [ $elapsed -gt $duration ]; then killall_process $clients dbench error "dbench failed to start on $clients!" fi