Mercurial > hg > mercurial-crew
diff tests/run-tests.py @ 10763:fd31a3237498
Fix run-tests.py -jX after 2ed667a9dfcb
author | Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> |
---|---|
date | Tue, 23 Mar 2010 15:22:17 +0100 |
parents | 2ed667a9dfcb |
children | afbcea270bb8 |
line wrap: on
line diff
--- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -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