summaryrefslogtreecommitdiff
path: root/tests/scripts/features/include
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-10-03 20:08:20 +0000
committerPaul Smith <psmith@gnu.org>2009-10-03 20:08:20 +0000
commitf87715a62c2e6a5660c2a176fffc0d7333bcfd8c (patch)
tree815c7f2dcc9e2220f7f21c7d30f7533fdd2a4542 /tests/scripts/features/include
parent56653d852446e74a4d998c7d91e6591e28c240f9 (diff)
downloadgunmake-f87715a62c2e6a5660c2a176fffc0d7333bcfd8c.tar.gz
- Include <alloca.h> even on non-__GNUC__ systems.
- Add some tests for unresolved bugs.
Diffstat (limited to 'tests/scripts/features/include')
-rw-r--r--tests/scripts/features/include11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/scripts/features/include b/tests/scripts/features/include
index 7ad4112..ba8908c 100644
--- a/tests/scripts/features/include
+++ b/tests/scripts/features/include
@@ -165,4 +165,15 @@ baz: end
#MAKE#: *** No rule to make target `end', needed by `baz'. Stop.\n",
512);
+if ($all_tests) {
+ # Test that include of a rebuild-able file doesn't show a warning
+ # Savannah bug #102
+ run_make_test(q!
+include foo
+foo: ; @echo foo = bar > $@
+!,
+ '', "#MAKE#: `foo' is up to date.\n");
+ rmfiles('foo');
+}
+
1;