Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r55244:efd56aab4e75
Date: 2012-05-31 16:57 +0200
http://bitbucket.org/pypy/pypy/changeset/efd56aab4e75/

Log:    speedup tests by passing -S to py.py

diff --git a/pypy/module/termios/test/test_termios.py 
b/pypy/module/termios/test/test_termios.py
--- a/pypy/module/termios/test/test_termios.py
+++ b/pypy/module/termios/test/test_termios.py
@@ -28,7 +28,7 @@
         return child
 
     def spawn(self, argv):
-        return self._spawn(sys.executable, [str(self.py_py)] + argv)
+        return self._spawn(sys.executable, [str(self.py_py), '-S'] + argv)
 
     def test_one(self):
         child = self.spawn(['--withmod-termios'])
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to