# HG changeset patch # User Ronny Pfannschmidt # Date 1269354137 -3600 # Node ID 1dbc96b10ebd08c54b252a6e7df8c68cddc45c04 # Parent 8008f7627b2f9ff81b210866a2998c3a32aa7c65 Fix run-tests.py -jX after 2ed667a9dfcb [ original upstream message ] diff -r 8008f7627b2f -r 1dbc96b10ebd tests/run-tests.py --- a/tests/run-tests.py Tue Mar 23 11:37:31 2010 +0100 +++ b/tests/run-tests.py Tue Mar 23 15:22:17 2010 +0100 @@ -144,7 +144,8 @@ (options, args) = parser.parse_args() # jython is always pure - options.pure = options.pure or 'java' in sys.platform + if 'java' in sys.platform: + options.pure = True if options.with_hg: if not (os.path.isfile(options.with_hg) and