summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-01-23 07:05:16 +0000
committerPaul Smith <psmith@gnu.org>2000-01-23 07:05:16 +0000
commit447c76f601fc1dedfd8e9cc333b8e576b96d1d0c (patch)
tree313d4329f44fcc0a1df2457cc99799a731d5b7b2 /tests
parent24aec1878b8957579c71a9d0b16048f091df096a (diff)
downloadgunmake-447c76f601fc1dedfd8e9cc333b8e576b96d1d0c.tar.gz
* A few fixes.
Diffstat (limited to 'tests')
-rw-r--r--tests/ChangeLog6
-rw-r--r--tests/scripts/features/include9
2 files changed, 12 insertions, 3 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index e613d8d..68825fa 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,9 @@
+2000-01-23 Paul D. Smith <psmith@gnu.org>
+
+ * scripts/features/include: Remove a check; the fix caused more
+ problems than the error, so I removed it and removed the test for
+ it.
+
2000-01-11 Paul D. Smith <psmith@gnu.org>
* scripts/functions/call: Add a test for PR/1517 and PR/1527: make
diff --git a/tests/scripts/features/include b/tests/scripts/features/include
index 2a48fbd..60f4482 100644
--- a/tests/scripts/features/include
+++ b/tests/scripts/features/include
@@ -51,8 +51,11 @@ $answer = "This is another included makefile\n";
# the -include suppressed it during the makefile read phase, we should
# see one during the makefile run phase).
-&run_make_with_options($makefile, "error", &get_logfile, 512);
-$answer = "$make_name: *** No rule to make target `makeit.mk', needed by `error'.\n";
-&compare_output($answer, &get_logfile(1));
+# The fix to this caused more problems than the error, so I removed it.
+# pds -- 22 Jan 2000
+
+#&run_make_with_options($makefile, "error", &get_logfile, 512);
+#$answer = "$make_name: *** No rule to make target `makeit.mk', needed by `error'.\n";
+#&compare_output($answer, &get_logfile(1));
1;