Skip to content

Commit

Permalink
sh/tests: Improve failure messages of expansion/arith15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jillest committed Mar 7, 2019
1 parent 2df4cef commit d503703
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/sh/tests/expansion/arith15.0
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit d503703

Please sign in to comment.