diff options
author | Paul Smith <psmith@gnu.org> | 2007-03-20 03:02:26 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2007-03-20 03:02:26 +0000 |
commit | 6ccf33cdbdfda2aea5d51e4d4991881c74d853d1 (patch) | |
tree | ce963770c6d0dc0428a6bce65d96da4b710e2831 /tests/scripts/features/patternrules | |
parent | e4da30858037b431880263676e8f90b1f8412a38 (diff) | |
download | gunmake-6ccf33cdbdfda2aea5d51e4d4991881c74d853d1.tar.gz |
This is a major update, which switches virtually every allocated-but-not-freed
string into the strcache. As a side-effect, many more structure members and
function arguments can/should be declared const.
As mentioned in the changelog, unfortunately measurement shows that this
change does not yet reduce memory. The problem is with secondary expansion:
because of this we store all the prerequisites in the string cache twice.
First we store the prerequisite string after initial expansion but before
secondary expansion, then we store each individual file after secondary
expansion and expand_deps(). I plan to change expand_deps() to be callable
in either context (eval or snap_deps) then have non-second-expansion
targets call expand_deps() during eval, so that we only need to store that
dependency list once.
Diffstat (limited to 'tests/scripts/features/patternrules')
-rw-r--r-- | tests/scripts/features/patternrules | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/scripts/features/patternrules b/tests/scripts/features/patternrules index 90525ae..53ec704 100644 --- a/tests/scripts/features/patternrules +++ b/tests/scripts/features/patternrules @@ -10,9 +10,9 @@ $dir = cwd; $dir =~ s,.*/([^/]+)$,../$1,; -# TEST #1: Make sure that multiple patterns where the same target -# can be built are searched even if the first one fails -# to match properly. +# TEST #0: Make sure that multiple patterns where the same target +# can be built are searched even if the first one fails +# to match properly. # run_make_test(' @@ -45,7 +45,7 @@ a: void '', ''); -# TEST #2: make sure files that are built via implicit rules are marked +# TEST #1: make sure files that are built via implicit rules are marked # as targets (Savannah bug #12202). # run_make_test(' @@ -69,7 +69,7 @@ foo.in: ; @: foo.out'); -# TEST #3: make sure intermidite files that also happened to be +# TEST #2: make sure intermediate files that also happened to be # prerequisites are not removed (Savannah bug #12267). # run_make_test(' @@ -96,7 +96,7 @@ $dir/foo.o"); unlink("$dir/foo.c"); -# TEST #4: make sure precious flag is set properly for targets +# TEST #3: make sure precious flag is set properly for targets # that are built via implicit rules (Savannah bug #13218). # run_make_test(' @@ -116,7 +116,7 @@ $(dir)/foo.bar: unlink("$dir/foo.bar"); -# TEST #5: make sure targets of a macthed implicit pattern rule never +# TEST #4: make sure targets of a matched implicit pattern rule are # never considered intermediate (Savannah bug #13022). # run_make_test(' |