[pypy-commit] pypy py3k: speedup tests by passing -S to py.py

antocuni noreply at buildbot.pypy.org
Thu May 31 17:11:17 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
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'])


More information about the pypy-commit mailing list