Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r80343:e81b61ff533f Date: 2015-10-20 06:39 +0000 http://bitbucket.org/pypy/pypy/changeset/e81b61ff533f/
Log: Give up running this test nightly before translation: not reliable. Keep it only as an appdirect test, where it seems to work fine. diff --git a/pypy/module/thread/test/test_fork.py b/pypy/module/thread/test/test_fork.py --- a/pypy/module/thread/test/test_fork.py +++ b/pypy/module/thread/test/test_fork.py @@ -11,6 +11,8 @@ if not hasattr(os, 'fork'): skip("No fork on this platform") + if not self.runappdirect: + skip("Not reliable before translation") def busy_thread(): print 'sleep' @@ -18,7 +20,7 @@ time.sleep(0) done.append(None) - for i in range(5): + for i in range(150): run = True done = [] try: _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit