diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-17 03:35:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-17 03:35:31 +0100 |
commit | f3e2818895a6f570a365001f625946a1b75c085a (patch) | |
tree | 8bd5ba3dad83b32439be4f7e166aa0eb6ab6384e /shell/hush_test | |
parent | 160746b60398a8a018e1791e259504f9d97a1b33 (diff) | |
download | busybox-w32-f3e2818895a6f570a365001f625946a1b75c085a.tar.gz busybox-w32-f3e2818895a6f570a365001f625946a1b75c085a.tar.bz2 busybox-w32-f3e2818895a6f570a365001f625946a1b75c085a.zip |
hush: improve HUSH_BRACE_EXP code (still disabled). ~0 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-parsing/brace2.right | 3 | ||||
-rwxr-xr-x | shell/hush_test/hush-parsing/brace2.tests | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-parsing/brace2.right b/shell/hush_test/hush-parsing/brace2.right new file mode 100644 index 000000000..37a966654 --- /dev/null +++ b/shell/hush_test/hush-parsing/brace2.right | |||
@@ -0,0 +1,3 @@ | |||
1 | {q,w} | ||
2 | {q,w} | ||
3 | Done | ||
diff --git a/shell/hush_test/hush-parsing/brace2.tests b/shell/hush_test/hush-parsing/brace2.tests new file mode 100755 index 000000000..ef75f0b70 --- /dev/null +++ b/shell/hush_test/hush-parsing/brace2.tests | |||
@@ -0,0 +1,5 @@ | |||
1 | v='{q,w}' | ||
2 | # Should not brace-expand v value | ||
3 | echo $v | ||
4 | echo "$v" | ||
5 | echo Done | ||