diff options
author | Lars Hjemli | 2008-12-06 12:03:54 +0100 |
---|---|---|
committer | Lars Hjemli | 2008-12-06 12:03:54 +0100 |
commit | b6faa78091a1340b73e291f1f87604f246d3f391 (patch) | |
tree | b6a7d2ee0fd9bc8ab2c6346dd30a49244f401e1c /tests | |
parent | tests/t0010-validate-html.sh: skip tests if 'tidy' is not available (diff) | |
download | cgit-b6faa78091a1340b73e291f1f87604f246d3f391.tar.gz cgit-b6faa78091a1340b73e291f1f87604f246d3f391.zip |
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>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index 95acb54..30f90d5 100755 --- a/tests/setup.sh +++ b/tests/setup.sh | |||
@@ -113,7 +113,7 @@ run_test() | |||
113 | then | 113 | then |
114 | printf " %2d) %-60s [ok]\n" $test_count "$desc" | 114 | printf " %2d) %-60s [ok]\n" $test_count "$desc" |
115 | else | 115 | else |
116 | ((test_failed++)) | 116 | test_failed=$(expr $test_failed + 1) |
117 | printf " %2d) %-60s [failed]\n" $test_count "$desc" | 117 | printf " %2d) %-60s [failed]\n" $test_count "$desc" |
118 | fi | 118 | fi |
119 | } | 119 | } |