Go over runtest exclusions

This commit is contained in:
rocky 2020-01-22 07:23:54 -05:00
parent ed64e7b443
commit dcf7ca1061
2 changed files with 5 additions and 0 deletions

View File

@ -133,6 +133,7 @@ SKIP_TESTS=(
[test_sys_setprofile.py]=1 # test assert fail
[test_sys_settrace.py]=1 # doesn't terminate
[test_tcl.py]=1 # it fails on its own
[test_telnetlib.py]=1 # doesn't terminate
[test_tempfile.py]=1 # FIXME nested "if" is in wrong place. 3.6.2. may work though
[test_thread.py]=1

View File

@ -179,6 +179,7 @@ case $PYVERSION in
# Figure out what's up here
SKIP_TESTS[test_bisect.py]=1
SKIP_TESTS[test_buffer.py]=1 # too long
SKIP_TESTS[test_distutils.py]=1
SKIP_TESTS[test_exception_variations.py]=1
SKIP_TESTS[test_quopri.py]=1
@ -196,7 +197,10 @@ case $PYVERSION in
3.7)
. ./3.7-exclude.sh
if (( batch )) ; then
SKIP_TESTS[test_distutils.py]=1
SKIP_TESTS[test_fileio.py]=1
SKIP_TESTS[test_zipimport_support.py]=1
fi
;;
3.8)