diff options
author | Brett Cannon <brett@python.org> | 2015-10-02 23:16:44 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-10-02 23:16:44 (GMT) |
commit | be7c1638e2bc837125efc18b7e9853caa7dc95bf (patch) | |
tree | 0c179684627afd257d408f270323f2552e250057 /Makefile.pre.in | |
parent | 8214a7c38f1057bfe5c32d24406a6511529867fd (diff) | |
download | cpython-be7c1638e2bc837125efc18b7e9853caa7dc95bf.zip cpython-be7c1638e2bc837125efc18b7e9853caa7dc95bf.tar.gz cpython-be7c1638e2bc837125efc18b7e9853caa7dc95bf.tar.bz2 |
Issue #25188: Add a -P/--pgo flag to regrtest to silence error output.
Since PGO building doesn't care about test failures, silence them when
running the test suite for performance reasons. Initial patch by
Alecsandru Patrascu of Intel.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 9a8c159..823def3 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -231,7 +231,7 @@ TCLTK_INCLUDES= @TCLTK_INCLUDES@ TCLTK_LIBS= @TCLTK_LIBS@ # The task to run while instrument when building the profile-opt target -PROFILE_TASK=-m test.regrtest >/dev/null 2>&1 +PROFILE_TASK=-m test.regrtest --pgo # report files for gcov / lcov coverage report COVERAGE_INFO= $(abs_builddir)/coverage.info |