summaryrefslogtreecommitdiff
path: root/tests/scripts/functions/call
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2003-01-30 07:49:17 +0000
committerPaul Smith <psmith@gnu.org>2003-01-30 07:49:17 +0000
commit1fa3db14684b18e50383be6a83a1f17f716b0788 (patch)
tree8ba77c275874f57a1429145c1f4381135bc80820 /tests/scripts/functions/call
parentb7c728046e3f32cd93b04fa4a19a69cf6135e6e4 (diff)
downloadgunmake-1fa3db14684b18e50383be6a83a1f17f716b0788.tar.gz
Fix bug #2238: the read.c:eval() function was not entirely reentrant.
Apply patch #1022: fix a memory corruption on very long target-specific variable definition lines.
Diffstat (limited to 'tests/scripts/functions/call')
-rw-r--r--tests/scripts/functions/call4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/scripts/functions/call b/tests/scripts/functions/call
index efee476..f3c5470 100644
--- a/tests/scripts/functions/call
+++ b/tests/scripts/functions/call
@@ -66,7 +66,6 @@ close(MAKEFILE);
&run_make_with_options($makefile, "", &get_logfile);
$answer = "foo bar\ndefault file file\nb d f\n\n\nb\nbar foo baz\nfoo bar baz blarp quux \n";
-
&compare_output($answer, &get_logfile(1));
@@ -94,10 +93,7 @@ EOF
close(MAKEFILE);
&run_make_with_options($makefile2, "", &get_logfile);
-
-# Create the answer to what should be produced by this Makefile
$answer = "1 2 3 4 5 6 7 8 9\n1 2 3 4 5\n1 2 3\n1 2 3\n";
-
&compare_output($answer,&get_logfile(1));
1;