runtests.sh remove 2.6.9 "fails on its own" tests

This commit is contained in:
rocky
2020-01-13 16:02:05 -05:00
parent b8413d2c23
commit 0a63a66f55
2 changed files with 64 additions and 9 deletions

View File

@@ -1,35 +1,90 @@
SKIP_TESTS=(
[test___all__.py]=1 # it fails on its own
[test___all__.py]=1 # it fails on its own
[test_aepack.py]=1 # Fails on its own
[test_aepack.py]=1 # it fails on its own
[test_al.py]=1 # it fails on its own
[test_anydbm.py]=1 # it fails on its own
[test_applesingle.py]=1 # it fails on its own
[test_bsddb185.py]=1 # it fails on its own
[test_bsddb3.py]=1 # it fails on its own
[test_bsddb.py]=1 # it fails on its own
[test_cd.py]=1 # it fails on its own
[test_cl.py]=1 # it fails on its own
[test_codecmaps_cn.py]=1 # it fails on its own
[test_codecmaps_jp.py]=1 # it fails on its own
[test_codecmaps_kr.py]=1 # it fails on its own
[test_codecmaps_tw.py]=1 # it fails on its own
[test_commands.py]=1 # it fails on its own
[test_curses.py]=1 # it fails on its own
[test_dbm.py]=1 # it fails on its own
[test_descr.py]=1
[test_doctest.py]=1 #
[test_dis.py]=1 # We change line numbers - duh!
[test_file.py]=1
[test_dl.py]=1 # it fails on its own
[test_file.py]=1 # it fails on its own
[test_future5.py]=1 # it fails on its own
[test_generators.py]=1 # Investigate
[test_gl.py]=1 # it fails on its own
[test_grp.py]=1 # Long test - might work Control flow?
[test_imageop.py]=1 # it fails on its own
[test_imaplib.py]=1 # it fails on its own
[test_imgfile.py]=1 # it fails on its own
[test_ioctl.py]=1 # it fails on its own
[test_kqueue.py]=1 # it fails on its own
[test_linuxaudiodev.py]=1 # it fails on its own
[test_macos.py]=1 # it fails on its own
[test_macostools.py]=1 # it fails on its own
[test_normalization.py]=1 # it fails on its own
[test_opcodes.py]=1 # Investigate whether we caused this recently
[test_ossaudiodev.py]=1 # it fails on its own
[test_pep277.py]=1 # it fails on its own
[test_pep352.py]=1 # Investigate
[test_pyclbr.py]=1 # Investigate
[test_pwd.py]=1 # Long test - might work? Control flow?
[test_py3kwarn.py]=1 # it fails on its own
[test_queue.py]=1 # Investigate whether we caused this recently
[test_re.py]=1 # probably control flow, uninitialized variable
[test_queue.py]=1 # Investigate whether we caused this recently
<<<<<<< Updated upstream
[test test_select.py]=1 # test takes too long to run: 11 seconds
[test_support.py]=1 #
=======
[test_scriptpackages.py]=1 # it fails on its own
[test_select.py]=1 # test takes too long to run: 11 seconds
>>>>>>> Stashed changes
[test_socket.py]=1 # test takes too long to run: 12 seconds
[test_startfile.py]=1 # it fails on its own
[test_structmembers.py]=1 # it fails on its own
[test_sunaudiodev.py]=1 # it fails on its own
[test_support.py]=1 #
[test_sys.py]=1 # test assertion failures
[test_trace.py]=1 # Line numbers are expected to be different
[test_urllib2_localnet.py]=1 # test takes too long to run: 12 seconds
[test_urllib2net.py]=1 # test takes too long to run: 11 seconds
[test_urllibnet.py]=1 # it fails on its own
[test_whichdb.py]=1 # it fails on its own
[test_winreg.py]=1 # it fails on its own
[test_winsound.py]=1 # it fails on its own
[test_zipimport_support.py]=1
[test_zipfile64.py]=1 # Skip Long test
[test_zlib.py]=1 #
# .pyenv/versions/2.6.9/lib/python2.6/lib2to3/refactor.pyc
# .pyenv/versions/2.6.9/lib/python2.6/pyclbr.pyc
)
# About 308 unit-test files, run in about 14 minutes
# About 303 unit-test files in about 7 minutes

View File

@@ -269,7 +269,7 @@ cd $srcdir
fulldir=$(pwd)
# pyenv version cleaning
for dir in .. ../.. ; do
for dir in .. ; do
(cd $dir && [[ -r .python-version ]] && rm -v .python-version )
done