[pypy-commit] pypy default: Bah, jumping ahead by a too-small amount means it's likely that

arigo noreply at buildbot.pypy.org
Sat Oct 26 20:58:02 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r67637:409b1a1452a6
Date: 2013-10-26 20:57 +0200
http://bitbucket.org/pypy/pypy/changeset/409b1a1452a6/

Log:	Bah, jumping ahead by a too-small amount means it's likely that two
	successive pieces will run largely identical tests.

diff --git a/rpython/jit/backend/test/zll_stress.py b/rpython/jit/backend/test/zll_stress.py
--- a/rpython/jit/backend/test/zll_stress.py
+++ b/rpython/jit/backend/test/zll_stress.py
@@ -17,6 +17,6 @@
     cpu = CPU(None, None)
     cpu.setup_once()
     r = Random()
-    r.jumpahead(piece*per_piece)
+    r.jumpahead(piece*99999999)
     for i in range(piece*per_piece, (piece+1)*per_piece):
         check_random_function(cpu, LLtypeOperationBuilder, r, i, total_iterations)


More information about the pypy-commit mailing list