summaryrefslogtreecommitdiff
path: root/tests/scripts/features/patternrules
AgeCommit message (Collapse)AuthorFilesLines
2012-03-04Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith1-2/+2
Fixes Savannah bug #34530.
2010-08-29Bump the version to 3.82.90.Paul Smith1-1/+2
Fix some doc bugs. Implement the --trace flag. Show filename/linenumber on error.
2009-09-28Implement the shortest stem first search order for pattern-specific ↵Boris Kolpackov1-0/+12
variables and pattern rules.
2009-09-24- Rework secondary expansion so we only defer it if there's a possibilityPaul Smith1-0/+18
it might be needed: for most situations we parse prereqs immediately as we used to. Reduces memory usage. - Fixes Savannah bug #18622.
2009-06-10- Fix Savannah bug #19108Paul Smith1-5/+35
- Fix Savannah bug #17752 - Test suite: * When tests fail keep a "run" file containing the command invoked. * Support for the Valgrind "memcheck" and "massif" tools.
2009-06-04- Modify access of config and gnulib Savannah modules to use GITPaul Smith1-0/+15
- Fix Savannah bug #24655. - Fix Savannah bug #24588. - Fix Savannah bug #24277. - Fix Savannah bug #25697. - Fix Savannah bug #25694. - Fix Savannah bug #25460. - Fix Savannah bug #26207. - Fix Savannah bug #25712. - Fix Savannah bug #26593. - Fix various doc issues.
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.