aboutsummaryrefslogtreecommitdiff
path: root/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/tests/expansion/arith15.06
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/tests/expansion/arith15.0 b/bin/sh/tests/expansion/arith15.0
index 748d14754873..32b35bb907cd 100644
--- a/bin/sh/tests/expansion/arith15.0
+++ b/bin/sh/tests/expansion/arith15.0
@@ -12,9 +12,9 @@ check() {
XXX=-9223372036854775808
check "XXX" -9223372036854775808
check "XXX - 1" 9223372036854775807
-check $(($XXX - 1)) 9223372036854775807
-check $(($XXX - 2)) 9223372036854775806
-check $((0x8000000000000000 == 0x7fffffffffffffff)) \
+check "$XXX - 1" 9223372036854775807
+check "$XXX - 2" 9223372036854775806
+check "0x8000000000000000 == 0x7fffffffffffffff" \
0
exit $((failures != 0))