From ae4bd34e6bc54cb6b9277f2ec231892517ed1c68 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 2 Oct 2016 15:20:57 +0200 Subject: hush testsuite: add glob_dir.tests Signed-off-by: Denys Vlasenko --- shell/hush_test/hush-glob/glob_dir.tests | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 shell/hush_test/hush-glob/glob_dir.tests (limited to 'shell/hush_test/hush-glob/glob_dir.tests') 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 @@ +mkdir dirtest + >dirtest/z.tmp + +echo */z.tmp +echo */z.* +echo */?.* +echo */z*p +echo d*r*e*t/z*p +echo *"/z.t"mp +echo */z"."* +echo *"/z"*"p" +echo "d"*r*e*t"/"z*p +echo +echo \*/z.tmp +echo "*"/z.* +echo */"?".* +echo */z"*p" +echo d*r*e\*t/z*p +echo *"\\/z.t"mp +echo */z".*" +echo *"/z"\*"p" +echo "d*"r*e*t"/"z*p + +rm dirtest/z.tmp +rmdir dirtest -- cgit v1.2.3