tests/setup.sh: allow testsuite to fail properly with POSIX standard shells

The "((expr))" construct is not implemented by e.g. dash, so this commit
replaces the construct with a more portable one.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli 2008-12-06 12:03:54 +01:00
부모 2755af6e29
커밋 b6faa78091

파일 보기

@ -113,7 +113,7 @@ run_test()
then then
printf " %2d) %-60s [ok]\n" $test_count "$desc" printf " %2d) %-60s [ok]\n" $test_count "$desc"
else else
((test_failed++)) test_failed=$(expr $test_failed + 1)
printf " %2d) %-60s [failed]\n" $test_count "$desc" printf " %2d) %-60s [failed]\n" $test_count "$desc"
fi fi
} }