From 192f74f0a1000efc08974f20d3b2eaa640771c65 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Fri, 15 Aug 2014 10:12:36 +0200 Subject: [PATCH] test: fix check in run script --- test/simulation/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simulation/run b/test/simulation/run index cbc7b8d..cd7b680 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 ]