summaryrefslogtreecommitdiff
path: root/tests/scripts/features/patternrules
Commit message (Collapse)AuthorAgeFilesLines
* Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith2012-03-041-2/+2
| | | | Fixes Savannah bug #34530.
* Bump the version to 3.82.90.Paul Smith2010-08-291-1/+2
| | | | | | Fix some doc bugs. Implement the --trace flag. Show filename/linenumber on error.
* Implement the shortest stem first search order for pattern-specific ↵Boris Kolpackov2009-09-281-0/+12
| | | | variables and pattern rules.
* - Rework secondary expansion so we only defer it if there's a possibilityPaul Smith2009-09-241-0/+18
| | | | | | it might be needed: for most situations we parse prereqs immediately as we used to. Reduces memory usage. - Fixes Savannah bug #18622.
* - Fix Savannah bug #19108Paul Smith2009-06-101-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.
* - Modify access of config and gnulib Savannah modules to use GITPaul Smith2009-06-041-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.
* This is a major update, which switches virtually every allocated-but-not-freedPaul Smith2007-03-201-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.
* Fixed bug #13022 by setting is_target flag on files that this implicitBoris Kolpackov2005-12-091-0/+30
| | | | pattern rule also makes.
* Various fixes and updates from testers of the beta3 release (mostly WindowsPaul Smith2005-07-041-7/+7
| | | | and OS/2 changes).
* Cleaned up some problems found with the tests running on a powerfulPaul Smith2005-06-271-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 :-/.
* Fixed Savannah bugs #13216 and #13218.Boris Kolpackov2005-05-311-0/+20
|
* Fixed Savannah bug #12267.Boris Kolpackov2005-03-101-0/+32
|
* Fixed Savannah bug #12202.Boris Kolpackov2005-03-041-3/+30
|
* Update the test template. A few fixes in run_make_test().Paul Smith2004-09-221-0/+40
Rename implicit_prereq_eval to patternrules, to be the start of a suite of tests of pattern rules.