[pypy-svn] r78083 - pypy/build/bot2/pypybuildbot

arigo at codespeak.net arigo at codespeak.net
Tue Oct 19 15:42:35 CEST 2010


Author: arigo
Date: Tue Oct 19 15:42:33 2010
New Revision: 78083

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Use -1 as the threshold to mean "infinite".
The issue is that some rsre code likely overflows 32 bits when
counting how many times some things loop.


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Tue Oct 19 15:42:33 2010
@@ -225,7 +225,7 @@
                      '--revision', WithProperties('%(got_revision)s'),
                      '--upload', #'--force-host', 'bigdog',
                      '--branch', WithProperties('%(branch)s'),
-                     '--args', ',--jit threshold=1000000000'],
+                     '--args', ',--jit threshold=-1'],
             workdir='./benchmarks',
             haltOnFailure=True))
         resfile = os.path.expanduser("~/bench_results_nojit/%(got_revision)s.json")



More information about the Pypy-commit mailing list