summaryrefslogtreecommitdiff
path: root/tests/scripts/features/patternrules
AgeCommit message (Collapse)AuthorFilesLines
2007-03-20This is a major update, which switches virtually every allocated-but-not-freedPaul Smith1-7/+7
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.
2005-12-09Fixed bug #13022 by setting is_target flag on files that this implicitBoris Kolpackov1-0/+30
pattern rule also makes.
2005-07-04Various fixes and updates from testers of the beta3 release (mostly WindowsPaul Smith1-7/+7
and OS/2 changes).
2005-06-27Cleaned up some problems found with the tests running on a powerfulPaul Smith1-1/+1
Solaris system with an EMC NFS storage solution. Still get some odd errors here unfortunately related to sub-second timestamps that I just can't figure out. It all works if we run the tests in /tmp instead though :-/.
2005-05-31Fixed Savannah bugs #13216 and #13218.Boris Kolpackov1-0/+20
2005-03-10Fixed Savannah bug #12267.Boris Kolpackov1-0/+32
2005-03-04Fixed Savannah bug #12202.Boris Kolpackov1-3/+30
2004-09-22Update the test template. A few fixes in run_make_test().Paul Smith1-0/+40
Rename implicit_prereq_eval to patternrules, to be the start of a suite of tests of pattern rules.