From: Miroslav Lichvar Date: Fri, 15 Aug 2014 08:12:36 +0000 (+0200) Subject: test: fix check in run script X-Git-Tag: 1.31-pre1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=192f74f0a1000efc08974f20d3b2eaa640771c65;p=thirdparty%2Fchrony.git test: fix check in run script --- diff --git a/test/simulation/run b/test/simulation/run index cbc7b8d3..cd7b6804 100755 --- a/test/simulation/run +++ b/test/simulation/run @@ -23,4 +23,4 @@ echo " PASSED ${#passed[@]}" echo " FAILED ${#failed[@]} (${failed[@]})" echo " SKIPPED ${#skipped[@]} (${skipped[@]})" -[ ${#failed} -eq 0 ] +[ ${#failed[@]} -eq 0 ]