aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 15:20:57 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 15:20:57 +0200
commitae4bd34e6bc54cb6b9277f2ec231892517ed1c68 (patch)
tree1454f75d428fcccc17128e65b575acf2d87421e8 /shell
parent8e2c9cc2fcfe23625e1c5845f99dfc93e022fc9b (diff)
downloadbusybox-w32-ae4bd34e6bc54cb6b9277f2ec231892517ed1c68.tar.gz
busybox-w32-ae4bd34e6bc54cb6b9277f2ec231892517ed1c68.tar.bz2
busybox-w32-ae4bd34e6bc54cb6b9277f2ec231892517ed1c68.zip
hush testsuite: add glob_dir.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rwxr-xr-xshell/hush_test/hush-glob/bash_brace1.tests2
-rw-r--r--shell/hush_test/hush-glob/glob_dir.right19
-rwxr-xr-xshell/hush_test/hush-glob/glob_dir.tests25
3 files changed, 45 insertions, 1 deletions
diff --git a/shell/hush_test/hush-glob/bash_brace1.tests b/shell/hush_test/hush-glob/bash_brace1.tests
index eb2f0e974..eae2e2a84 100755
--- a/shell/hush_test/hush-glob/bash_brace1.tests
+++ b/shell/hush_test/hush-glob/bash_brace1.tests
@@ -4,7 +4,7 @@ v='*brace1.t*'; echo $v
4# ...but not brace expanded: 4# ...but not brace expanded:
5v='*{b,b}race1.t*'; echo $v 5v='*{b,b}race1.t*'; echo $v
6 6
7# whereas direct brces are expanded: 7# whereas direct braces are expanded:
8echo *{b,b}race1.t* 8echo *{b,b}race1.t*
9 9
10echo Done: $? 10echo Done: $?
diff --git a/shell/hush_test/hush-glob/glob_dir.right b/shell/hush_test/hush-glob/glob_dir.right
new file mode 100644
index 000000000..aa90514d5
--- /dev/null
+++ b/shell/hush_test/hush-glob/glob_dir.right
@@ -0,0 +1,19 @@
1dirtest/z.tmp
2dirtest/z.tmp
3dirtest/z.tmp
4dirtest/z.tmp
5dirtest/z.tmp
6dirtest/z.tmp
7dirtest/z.tmp
8dirtest/z.tmp
9dirtest/z.tmp
10
11*/z.tmp
12*/z.*
13*/?.*
14*/z*p
15d*r*e*t/z*p
16*\/z.tmp
17*/z.*
18*/z*p
19d*r*e*t/z*p
diff --git a/shell/hush_test/hush-glob/glob_dir.tests b/shell/hush_test/hush-glob/glob_dir.tests
new file mode 100755
index 000000000..dc4c4fdb5
--- /dev/null
+++ b/shell/hush_test/hush-glob/glob_dir.tests
@@ -0,0 +1,25 @@
1mkdir dirtest
2 >dirtest/z.tmp
3
4echo */z.tmp
5echo */z.*
6echo */?.*
7echo */z*p
8echo d*r*e*t/z*p
9echo *"/z.t"mp
10echo */z"."*
11echo *"/z"*"p"
12echo "d"*r*e*t"/"z*p
13echo
14echo \*/z.tmp
15echo "*"/z.*
16echo */"?".*
17echo */z"*p"
18echo d*r*e\*t/z*p
19echo *"\\/z.t"mp
20echo */z".*"
21echo *"/z"\*"p"
22echo "d*"r*e*t"/"z*p
23
24rm dirtest/z.tmp
25rmdir dirtest