Author: Armin Rigo <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to