We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6d752 commit cac4fefCopy full SHA for cac4fef
Lib/test/libregrtest/main.py
@@ -462,6 +462,13 @@ def run_tests(self):
462
or self.tests or self.ns.args)):
463
self.display_header()
464
465
+ if self.ns.huntrleaks:
466
+ warmup, repetitions, _ = self.ns.huntrleaks
467
+ if warmup < 3:
468
+ msg = ("WARNING: Running tests with --huntrleaks/-R and less than "
469
+ "3 warmup repetitions can give false positives!")
470
+ print(msg, file=sys.stdout, flush=True)
471
+
472
if self.ns.randomize:
473
print("Using random seed", self.ns.random_seed)
474
0 commit comments