[pypy-commit] pypy win64-stage1: hg merge default
ctismer
noreply at buildbot.pypy.org
Sat Mar 24 01:04:18 CET 2012
Author: Christian Tismer <tismer at stackless.com>
Branch: win64-stage1
Changeset: r53960:f3ad45946763
Date: 2012-03-24 01:03 +0100
http://bitbucket.org/pypy/pypy/changeset/f3ad45946763/
Log: hg merge default
diff --git a/pypy/objspace/std/test/test_userobject.py b/pypy/objspace/std/test/test_userobject.py
--- a/pypy/objspace/std/test/test_userobject.py
+++ b/pypy/objspace/std/test/test_userobject.py
@@ -244,8 +244,12 @@
skip("disabled")
if self.runappdirect:
total = 500000
+ def rand():
+ import random
+ return random.randrange(0, 5)
else:
total = 50
+ rand = self.rand
#
class A(object):
hash = None
@@ -256,7 +260,7 @@
a = A()
a.next = tail.next
tail.next = a
- for j in range(self.rand()):
+ for j in range(rand()):
any = any.next
if any.hash is None:
any.hash = hash(any)
diff --git a/pypy/translator/test/test_unsimplify.py b/pypy/translator/test/test_unsimplify.py
--- a/pypy/translator/test/test_unsimplify.py
+++ b/pypy/translator/test/test_unsimplify.py
@@ -78,7 +78,7 @@
return x * 6
def hello_world():
if we_are_translated():
- fd = os.open(tmpfile, os.O_WRONLY | os.O_CREAT, 0)
+ fd = os.open(tmpfile, os.O_WRONLY | os.O_CREAT, 0644)
os.close(fd)
graph, t = translate(f, [int], type_system)
call_initial_function(t, hello_world)
@@ -97,7 +97,7 @@
return x * 6
def goodbye_world():
if we_are_translated():
- fd = os.open(tmpfile, os.O_WRONLY | os.O_CREAT, 0)
+ fd = os.open(tmpfile, os.O_WRONLY | os.O_CREAT, 0644)
os.close(fd)
graph, t = translate(f, [int], type_system)
call_final_function(t, goodbye_world)
More information about the pypy-commit
mailing list