diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-14 15:50:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-14 15:50:55 +0000 |
commit | dd316dd283704b9adb588c3fb7cdec6ba5fbceb8 (patch) | |
tree | 7e5a4f524e01190d04bc79a4814c4ff6dce9d40d /shell/hush_test/zbad2 | |
parent | a84420062a1e7a6e149b7d1ca77e1a787e55d45b (diff) |
hush: add support for ':'; create testsuite entries
text data bss dec hex filename
809569 612 7044 817225 c7849 busybox_old
809528 612 7044 817184 c7820 busybox_unstripped
Diffstat (limited to 'shell/hush_test/zbad2')
-rw-r--r-- | shell/hush_test/zbad2 | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/shell/hush_test/zbad2 b/shell/hush_test/zbad2 deleted file mode 100644 index b6fffe59e..000000000 --- a/shell/hush_test/zbad2 +++ /dev/null @@ -1,19 +0,0 @@ -## TODO: fix and add to testsuite - -## # bash zbad2 -## ZVAR=z.map -## *.map -## # hush zbad2 -## ZVAR=z.map -## z.map <====== !!! - -## hush does globbing for "VAR=val" too! -## it should do it only for non-assignments. -## even if word looks like assignment, it can be non-assignment: -## ZVAR=*.map /bin/echo ZVAR=*.map -## ^dont_glob ^glob - ->ZVAR=z.map -ZVAR=*.map /bin/echo ZVAR=*.map -ZVAR=*.map -echo "$ZVAR" |