Commit f0807ab2 authored by Gregory P. Smith's avatar Gregory P. Smith Committed by GitHub

Only setup PGO tests when --pgo is enabled. (GH-14927)

parent 2f224a07
...@@ -215,8 +215,9 @@ class Regrtest: ...@@ -215,8 +215,9 @@ class Regrtest:
removepy(self.tests) removepy(self.tests)
# add default PGO tests if no tests are specified if self.ns.pgo:
setup_pgo_tests(self.ns) # add default PGO tests if no tests are specified
setup_pgo_tests(self.ns)
stdtests = STDTESTS[:] stdtests = STDTESTS[:]
nottests = NOTTESTS.copy() nottests = NOTTESTS.copy()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment