summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@kolpackov.net>2005-03-04 14:31:09 +0000
committerBoris Kolpackov <boris@kolpackov.net>2005-03-04 14:31:09 +0000
commit2860d3b247e70a34246936fb085aeec951ea49b1 (patch)
tree83d22d4a32ecba8946b5dc002d9a15635c3a485d /tests/scripts
parent28078b517a3151f18cf427be87600803251d732b (diff)
downloadgunmake-2860d3b247e70a34246936fb085aeec951ea49b1.tar.gz
Fixed Savannah bug #12202.
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/features/patternrules33
1 files changed, 30 insertions, 3 deletions
diff --git a/tests/scripts/features/patternrules b/tests/scripts/features/patternrules
index 926695a..3202a67 100644
--- a/tests/scripts/features/patternrules
+++ b/tests/scripts/features/patternrules
@@ -4,8 +4,10 @@ $description = "Test pattern rules.";
$details = "";
-# Make sure that multiple patterns where the same target can be built are
-# searched even if the first one fails to match properly.
+# TEST #1: Make sure that multiple patterns where the same target
+# can be built are searched even if the first one fails
+# to match properly.
+#
run_make_test('
.PHONY: all
@@ -33,7 +35,32 @@ a: void
@true
3.implicit-phony:
-', '', '');
+',
+'',
+'');
+
+# TEST #2: make sure files that are built via implicit rules are marked
+# as targets (Savannah bug #12202).
+#
+run_make_test('
+TARGETS := foo foo.out
+
+.PHONY: all foo.in
+
+all: $(TARGETS)
+
+%: %.in
+ @echo $@
+
+%.out: %
+ @echo $@
+
+foo.in: ; @:
+
+',
+'',
+'foo
+foo.out');
# This tells the test driver that the perl test script executed properly.