diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
commit | dadfb4975b23b284fa02d15a5cfd21593b2993fc (patch) | |
tree | 993a6e7a9efd1d2a06408d9cd069cb4eeb09e883 /shell/hush_test | |
parent | e1ee48e0fdfe18aadb410b62f21516bf4b8ea581 (diff) | |
download | busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.gz busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.bz2 busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.zip |
hush: add #defines to switch off break/continue if loops are not supported
*: remove a few inline keywords
no code changes
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-misc/builtin1.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/builtin1.tests | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/builtin1.right b/shell/hush_test/hush-misc/builtin1.right new file mode 100644 index 000000000..2e55ecb09 --- /dev/null +++ b/shell/hush_test/hush-misc/builtin1.right | |||
@@ -0,0 +1,2 @@ | |||
1 | VARIABLE=export | ||
2 | OK:0 | ||
diff --git a/shell/hush_test/hush-misc/builtin1.tests b/shell/hush_test/hush-misc/builtin1.tests new file mode 100755 index 000000000..1a2941faa --- /dev/null +++ b/shell/hush_test/hush-misc/builtin1.tests | |||
@@ -0,0 +1,6 @@ | |||
1 | # builtins, unlike keywords like "while", can be constructed | ||
2 | # with substitutions | ||
3 | VARIABLE=export | ||
4 | $VARIABLE VARIABLE | ||
5 | env | grep ^VARIABLE | ||
6 | echo OK:$? | ||