Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r75129:a59b791f9299
Date: 2014-12-26 18:01 +0100
http://bitbucket.org/pypy/pypy/changeset/a59b791f9299/

Log:    trying to fix the linux64 nightly tests

diff --git a/pypy/module/select/test/test_select.py 
b/pypy/module/select/test/test_select.py
--- a/pypy/module/select/test/test_select.py
+++ b/pypy/module/select/test/test_select.py
@@ -286,7 +286,7 @@
 
             t = thread.start_new_thread(pollster.poll, ())
             try:
-                time.sleep(0.1)
+                time.sleep(0.3)
                 for i in range(5): print '',  # to release GIL untranslated
                 # trigger ufds array reallocation
                 for fd in rfds:
@@ -297,7 +297,7 @@
             finally:
                 # and make the call to poll() from the thread return
                 os.write(w, b'spam')
-                time.sleep(0.1)
+                time.sleep(0.3)
                 for i in range(5): print '',  # to release GIL untranslated
         finally:
             os.close(r)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to