summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorpsmith <>2011-05-07 14:36:11 +0000
committerpsmith <>2011-05-07 14:36:11 +0000
commit46bda9ab3c1b2fcfdb523177283801f5ace65d6b (patch)
tree6f1a2bae3db487327e227f221098de5533c05460 /tests/scripts
parentb80cc7c9ea2e76e4950a07cecb0151c0a9d7be3d (diff)
downloadmake-46bda9ab3c1b2fcfdb523177283801f5ace65d6b.tar.gz
Inverted the boolean test from what I wanted it to be. Added a
regression test to make sure this continues to work.
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/functions/wildcard12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/scripts/functions/wildcard b/tests/scripts/functions/wildcard
index 2841f5d5..bcd84ad7 100644
--- a/tests/scripts/functions/wildcard
+++ b/tests/scripts/functions/wildcard
@@ -88,4 +88,16 @@ all: ; @echo $(wildcard xz--y*.7)
!,
'', "\n");
+# TEST #5: wildcard used to verify file existence
+
+touch('xxx.yyy');
+
+run_make_test(q!exists: ; @echo file=$(wildcard xxx.yyy)!,
+ '', "file=xxx.yyy\n");
+
+unlink('xxx.yyy');
+
+run_make_test(q!exists: ; @echo file=$(wildcard xxx.yyy)!,
+ '', "file=\n");
+
1;