# HG changeset patch # User Matt Mackall # Date 2008-10-22 22:34:37 # Node ID 0e8a9530d3235ed6ab4dee52898ade972525aa95 # Parent b4c035057d3414b70d3f5eef73a2698f7fc9ec5a run-tests: --interactive overrides -j diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -78,8 +78,8 @@ if options.jobs < 1: print >> sys.stderr, 'ERROR: -j/--jobs must be positive' sys.exit(1) if options.interactive and options.jobs > 1: - print >> sys.stderr, 'ERROR: cannot mix -interactive and --jobs > 1' - sys.exit(1) + print '(--interactive overrides --jobs)' + options.jobs = 1 def rename(src, dst): """Like os.rename(), trade atomicity and opened files friendliness