summaryrefslogtreecommitdiff
path: root/do-tests
Commit message (Collapse)AuthorAgeFilesLines
* test: Fix GNU makeism concerning exporting variables in Makefile.M Joonas Pihlaja2010-04-171-1/+1
| | | | | | | | | | | | | | The PYTHON env variable was being exported to child processes using a GNU make extension. Primarily this is used in regress-driver to run the testers with the right python environment by querying the python interpreter. This patch makes explicit the carrying around of the PYTHON environment variable down to regress-driver through the convolutions of the Makefile. This fixes the build using FreeBSD's make, which doesn't support the variable export extension that GNU make does. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Change make check to use a test program.Greg Troxel2010-03-311-0/+3
automake supports test programs, not test make targets. Add a 1-line script "do-tests" to invoke make with our targets, thus conforming to the automake way. This avoids the duplicate test problem in our previous workaround, which first had the test targets as a dependency (running the tests) and then invoked make to actually run them.