mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 17:53:02 +00:00
tests: make recheck
* tests/local.mk (recheck): New.
This commit is contained in:
@@ -229,6 +229,9 @@ To run a specific set of tests, use -k (for "keyword"). For example:
|
|||||||
Both can be combined.
|
Both can be combined.
|
||||||
$ make check-local TESTSUITEFLAGS='-j8 -k c++'
|
$ make check-local TESTSUITEFLAGS='-j8 -k c++'
|
||||||
|
|
||||||
|
To rerun the tests that failed:
|
||||||
|
$ make recheck -j5
|
||||||
|
|
||||||
** Typical errors
|
** Typical errors
|
||||||
If the test suite shows failures such as the following one
|
If the test suite shows failures such as the following one
|
||||||
|
|
||||||
|
|||||||
@@ -94,6 +94,13 @@ clean-local: clean-local-tests
|
|||||||
clean-local-tests:
|
clean-local-tests:
|
||||||
test ! -f $(TESTSUITE) || $(TESTSUITE) -C %D% --clean
|
test ! -f $(TESTSUITE) || $(TESTSUITE) -C %D% --clean
|
||||||
|
|
||||||
|
.PHONY: recheck
|
||||||
|
recheck: $(RUN_TESTSUITE_deps)
|
||||||
|
$(RUN_TESTSUITE) \
|
||||||
|
$$(perl -n \
|
||||||
|
-e 'if (/Summary of the failures/../Detailed failed tests/)' \
|
||||||
|
-e '{ /^ *[0-9]+:/ && s/:.*//s && print }' %D%/testsuite.log)
|
||||||
|
|
||||||
check-local: $(RUN_TESTSUITE_deps)
|
check-local: $(RUN_TESTSUITE_deps)
|
||||||
$(RUN_TESTSUITE)
|
$(RUN_TESTSUITE)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user