Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-arith/arith.tests')
-rwxr-xr-xshell/hush_test/hush-arith/arith.tests6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/hush_test/hush-arith/arith.tests b/shell/hush_test/hush-arith/arith.tests
index 6b707486c..9f0399816 100755
--- a/shell/hush_test/hush-arith/arith.tests
+++ b/shell/hush_test/hush-arith/arith.tests
@@ -159,12 +159,12 @@ echo 63 $(( 64#_ ))
#ash# # weird bases (error)
#ash# echo $(( 3425#56 ))
-echo missing number after base
-echo 0 $(( 2# ))
# these should generate errors
+echo missing number after base
+( echo $(( 2# )) )
( echo $(( 7 = 43 )) )
-#ash# echo $(( 2#44 ))
+( echo $(( 2#44 )) )
( echo $(( 44 / 0 )) )
( let 'jv += $iv' )
( echo $(( jv += \$iv )) )