diff options
author | Denis Vlasenko | 2007-03-05 00:27:50 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-05 00:27:50 +0000 |
commit | 1c660b4bd2c303fcb829bc93143fc454693afab4 (patch) | |
tree | 5b2f2c8676d13bc132fdac4506049facd3475235 /shell/ash_test/ash-arith/arith-for.right | |
parent | 3af3e5b4b0d12dffbe7bd144092f8cb140ff74a4 (diff) | |
download | busybox-1c660b4bd2c303fcb829bc93143fc454693afab4.zip busybox-1c660b4bd2c303fcb829bc93143fc454693afab4.tar.gz |
small ash testsuite, adapted from bash
(only a small part of it, actually)
Diffstat (limited to 'shell/ash_test/ash-arith/arith-for.right')
-rw-r--r-- | shell/ash_test/ash-arith/arith-for.right | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/shell/ash_test/ash-arith/arith-for.right b/shell/ash_test/ash-arith/arith-for.right new file mode 100644 index 0000000..4494110 --- /dev/null +++ b/shell/ash_test/ash-arith/arith-for.right @@ -0,0 +1,74 @@ +0 +1 +2 +0 +1 +2 +0 +1 +2 +0 +2 +4 +fx is a function +fx () +{ + i=0; + for ((1; i < 3; i++ )) + do + echo $i; + done; + for ((i=0; 1; i++ )) + do + if (( i >= 3 )); then + break; + fi; + echo $i; + done; + for ((i=0; i<3; 1)) + do + echo $i; + (( i++ )); + done; + i=0; + for ((1; 1; 1)) + do + if (( i > 2 )); then + break; + fi; + echo $i; + (( i++ )); + done; + i=0; + for ((1; 1; 1)) + do + if (( i > 2 )); then + break; + fi; + echo $i; + (( i++ )); + done +} +0 +1 +2 +0 +1 +2 +0 +1 +2 +0 +1 +2 +0 +1 +2 +./arith-for.tests: line 77: syntax error: arithmetic expression required +./arith-for.tests: line 77: syntax error: `(( i=0; "i < 3" ))' +2 +./arith-for.tests: line 83: syntax error: `;' unexpected +./arith-for.tests: line 83: syntax error: `(( i=0; i < 3; i++; 7 ))' +2 +20 +20 |