diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-17 07:26:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-17 07:26:52 +0000 |
commit | 988339259fb74d81e2bd0f702503815f63edc972 (patch) | |
tree | 55d02df7fec9ede538d325af2df7c09b83a171cf /shell/hush_test/hush-bugs | |
parent | 30c9cc5b178932bc417846919eaa2fc1bf8e5996 (diff) | |
download | busybox-w32-988339259fb74d81e2bd0f702503815f63edc972.tar.gz busybox-w32-988339259fb74d81e2bd0f702503815f63edc972.tar.bz2 busybox-w32-988339259fb74d81e2bd0f702503815f63edc972.zip |
move glob_and_assign.tests from hush-bugs to hush-glob
Diffstat (limited to 'shell/hush_test/hush-bugs')
-rw-r--r-- | shell/hush_test/hush-bugs/glob_and_assign.right | 6 | ||||
-rwxr-xr-x | shell/hush_test/hush-bugs/glob_and_assign.tests | 10 |
2 files changed, 0 insertions, 16 deletions
diff --git a/shell/hush_test/hush-bugs/glob_and_assign.right b/shell/hush_test/hush-bugs/glob_and_assign.right deleted file mode 100644 index d46e44363..000000000 --- a/shell/hush_test/hush-bugs/glob_and_assign.right +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | ZVAR=z.tmp ZVAR=*.tmp ZVAR=[z].tmp | ||
2 | ZVAR=z.tmp ZVAR=*.tmp ZVAR=[z].tmp | ||
3 | *.tmp | ||
4 | ZVAR=z.tmp z.tmp | ||
5 | ZVAR=z.tmp ZVAR=*.tmp ZVAR=[z].tmp | ||
6 | ZVAR=z.tmp ZVAR=*.tmp ZVAR=[z].tmp | ||
diff --git a/shell/hush_test/hush-bugs/glob_and_assign.tests b/shell/hush_test/hush-bugs/glob_and_assign.tests deleted file mode 100755 index 0b158f20f..000000000 --- a/shell/hush_test/hush-bugs/glob_and_assign.tests +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | >ZVAR=z.tmp | ||
2 | >z.tmp | ||
3 | ZVAR=*.tmp echo ZVAR=*.tmp "ZVAR=*.tmp" "ZVAR=[z].tmp" | ||
4 | ZVAR=*.tmp /bin/echo ZVAR=*.tmp "ZVAR=*.tmp" "ZVAR=[z].tmp" | ||
5 | ZVAR=*.tmp | ||
6 | echo "$ZVAR" | ||
7 | echo $ZVAR | ||
8 | echo ZVAR=*.tmp "ZVAR=*.tmp" "ZVAR=[z].tmp" | ||
9 | /bin/echo ZVAR=*.tmp "ZVAR=*.tmp" "ZVAR=[z].tmp" | ||
10 | rm ZVAR=z.tmp z.tmp | ||