# HG changeset patch # User Christian Ebert # Date 1384950414 0 # Node ID 12c752c0a02b81e2a11ae8111e46433bbf5b8d11 # Parent c8f3a433abe62a66ce6b62011e03be9859206615# Parent 164ed9bf157c5020c7b6ab47d05c3297d1806b29 Merge with stable diff -r c8f3a433abe6 -r 12c752c0a02b tests/run-tests.py --- a/tests/run-tests.py Sun Nov 17 17:30:23 2013 +0000 +++ b/tests/run-tests.py Wed Nov 20 12:26:54 2013 +0000 @@ -1134,6 +1134,8 @@ _checkhglib("Tested") print "# Ran %d tests, %d skipped, %d failed." % ( tested, skipped + ignored, failed) + if results['!']: + print 'python hash seed:', os.environ['PYTHONHASHSEED'] if options.time: outputtimes(options) @@ -1185,7 +1187,6 @@ # use a random python hash seed all the time # we do the randomness ourself to know what seed is used os.environ['PYTHONHASHSEED'] = str(random.getrandbits(32)) - print 'python hash seed:', os.environ['PYTHONHASHSEED'] global TESTDIR, HGTMP, INST, BINDIR, PYTHONDIR, COVERAGE_FILE TESTDIR = os.environ["TESTDIR"] = os.getcwd()