Commit pymake test that got missed on the recent update.

This commit is contained in:
Kyle Huey 2011-08-26 08:07:30 -04:00
Родитель 15bc835da4
Коммит 266a2e10be
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -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