Author: Armin Rigo <[email protected]>
Branch: kill-someobject
Changeset: r58049:83bcc2a81571
Date: 2012-10-12 16:36 +0200
http://bitbucket.org/pypy/pypy/changeset/83bcc2a81571/
Log: Fix sandbox tests
diff --git a/pypy/translator/sandbox/test/test_pypy_interact.py
b/pypy/translator/sandbox/test/test_pypy_interact.py
--- a/pypy/translator/sandbox/test/test_pypy_interact.py
+++ b/pypy/translator/sandbox/test/test_pypy_interact.py
@@ -72,8 +72,7 @@
def setup_module(mod):
- t = Translation(mini_pypy_like_entry_point, backend='c',
- standalone=True, sandbox=True)
+ t = Translation(mini_pypy_like_entry_point, backend='c', sandbox=True)
mod.executable = str(t.compile())
diff --git a/pypy/translator/sandbox/test/test_sandbox.py
b/pypy/translator/sandbox/test/test_sandbox.py
--- a/pypy/translator/sandbox/test/test_sandbox.py
+++ b/pypy/translator/sandbox/test/test_sandbox.py
@@ -21,7 +21,7 @@
g.flush()
def compile(f, gc='ref'):
- t = Translation(f, backend='c', standalone=True, sandbox=True, gc=gc,
+ t = Translation(f, backend='c', sandbox=True, gc=gc,
check_str_without_nul=True)
return str(t.compile())
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit