# HG changeset patch # User Matt Mackall # Date 2013-06-07 20:58:14 # Node ID ef29a552d00de459143ba1b352827352acf698d3 # Parent a1b8b1b9e2e2a40969cb5c2d4aa59b055e091cba run-tests: remove spurious disable of --time with --debug diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -256,10 +256,6 @@ def parseargs(): sys.stderr.write( 'warning: --timeout option ignored with --debug\n') options.timeout = 0 - if options.time: - sys.stderr.write( - 'warning: --time option ignored with --debug\n') - options.time = False if options.py3k_warnings: if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0): parser.error('--py3k-warnings can only be used on Python 2.6+')