diff options
author | Matthew Horsfall (alh) <wolfsage@gmail.com> | 2014-03-13 05:39:48 -0700 |
---|---|---|
committer | Matthew Horsfall (alh) <wolfsage@gmail.com> | 2014-05-28 12:56:05 -0400 |
commit | be075cafa41ab490f7c5fbb8acd4adc29d8fa1a0 (patch) | |
tree | ecaaf46f181e13b61713221ee0d9a3d93357e63e /Makefile.SH | |
parent | 24e7ff4ea7e35b5aed3b22dd00848a50f81fad4b (diff) | |
download | perl-be075cafa41ab490f7c5fbb8acd4adc29d8fa1a0.tar.gz |
[perl #121431] Add support for test.valgrind parallel testing.
Output for each test will be printed inline when it finishes.
Sample usage (loud):
TEST_JOBS=9 make test.valgrind
Sample usage (quiet):
VG_OPTS='-q --leak-check=no --show-reachable=no' TEST_JOBS=9 make test.valgrind
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index b24441364a..0fb30e82e6 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1510,7 +1510,7 @@ test.valgrind check.valgrind: test_prep @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 @echo "And of course you have to have valgrind..." $(VALGRIND) $(VG_TEST) || exit 1 - PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(RUN_TESTS) choose + PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose !NO!SUBS! ;; esac |