- Include <alloca.h> even on non-__GNUC__ systems.

- Add some tests for unresolved bugs.
This commit is contained in:
Paul Smith
2009-10-03 20:08:20 +00:00
parent 56653d8524
commit f87715a62c
7 changed files with 99 additions and 43 deletions

View File

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