diff options
author | Paul Smith <psmith@gnu.org> | 2002-07-11 06:38:57 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-07-11 06:38:57 +0000 |
commit | 21cf8c64441103bf875a56b39f39397ecd51424e (patch) | |
tree | 24ff4cecaa8603feffa1ecf5ed82a4199a51d673 /tests/scripts/targets | |
parent | 4d72c4c11e3aff65e9bb36e5fcf75f088b140049 (diff) | |
download | gunmake-21cf8c64441103bf875a56b39f39397ecd51424e.tar.gz |
Install Greg McGary's patches to port the id-utils hashing functions to
GNU make. Also he provides some other performance fixups after doing
some profiling of make on large makefiles.
Modify the test suite to allow the use of Valgrind to find memory problems.
Diffstat (limited to 'tests/scripts/targets')
-rw-r--r-- | tests/scripts/targets/INTERMEDIATE | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/targets/INTERMEDIATE b/tests/scripts/targets/INTERMEDIATE index fe3f4e9..725ab0e 100644 --- a/tests/scripts/targets/INTERMEDIATE +++ b/tests/scripts/targets/INTERMEDIATE @@ -59,7 +59,7 @@ $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n"; # TEST #3 &run_make_with_options($makefile,'foo.c',&get_logfile); -$answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm foo.e bar.e\n"; +$answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n"; &compare_output($answer, &get_logfile(1)); # TEST #4 @@ -74,7 +74,7 @@ sleep($wtime); &touch('foo.f'); &run_make_with_options($makefile,'foo.c',&get_logfile); -$answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm foo.e bar.e\n"; +$answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n"; &compare_output($answer, &get_logfile(1)); # TEST #6 -- added for PR/1669: don't remove files mentioned on the cmd line. |