From 266a2e10be3e3eae8009f10cf5bdf1f8f57b99af Mon Sep 17 00:00:00 2001 From: Kyle Huey Date: Fri, 26 Aug 2011 08:07:30 -0400 Subject: [PATCH] Commit pymake test that got missed on the recent update. --- build/pymake/tests/native-command-shell-glob.mk | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 build/pymake/tests/native-command-shell-glob.mk diff --git a/build/pymake/tests/native-command-shell-glob.mk b/build/pymake/tests/native-command-shell-glob.mk new file mode 100644 index 00000000000..4bcdad8b9ef --- /dev/null +++ b/build/pymake/tests/native-command-shell-glob.mk @@ -0,0 +1,11 @@ +#T gmake skip +all: + mkdir shell-glob-test + touch shell-glob-test/foo.txt + touch shell-glob-test/bar.txt + touch shell-glob-test/a.foo + touch shell-glob-test/b.foo + $(RM) shell-glob-test/*.txt + $(RM) shell-glob-test/?.foo + rmdir shell-glob-test + @echo TEST-PASS