go over POWER exclusion tests

This commit is contained in:
rocky
2020-01-15 04:54:41 -05:00
parent 968f86011b
commit 546269271f
2 changed files with 6 additions and 2 deletions

View File

@@ -33,7 +33,6 @@ SKIP_TESTS=(
[test_doctest2.py]=1 # assert failure [test_doctest2.py]=1 # assert failure
[test_docxmlrpc.py]=1 [test_docxmlrpc.py]=1
[test_enum.py]=1 # probably bad control flow [test_enum.py]=1 # probably bad control flow
[test_exceptions.py]=1 # parse error
[test_faulthandler.py]=1 # takes too long [test_faulthandler.py]=1 # takes too long
[test_fcntl.py]=1 [test_fcntl.py]=1
[test_fileinput.py]=1 [test_fileinput.py]=1
@@ -110,6 +109,7 @@ SKIP_TESTS=(
[test_sys_setprofile.py]=1 # test assertions failed [test_sys_setprofile.py]=1 # test assertions failed
[test_sys_settrace.py]=1 # parse error [test_sys_settrace.py]=1 # parse error
[test_tarfile.py]=1 # test assertions failed [test_tarfile.py]=1 # test assertions failed
[test_telnetlib.py]=1 # doesn't terminate? Works on decompyle3 though
[test_threading.py]=1 # [test_threading.py]=1 #
[test_timeit.py]=1 # probably control flow uninitialized variable [test_timeit.py]=1 # probably control flow uninitialized variable
[test_tk.py]=1 # test takes too long to run: 13 seconds [test_tk.py]=1 # test takes too long to run: 13 seconds

View File

@@ -98,6 +98,7 @@ case $PYVERSION in
# SyntaxError: Non-ASCII character '\xdd' in file test_base64.py on line 153, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details # SyntaxError: Non-ASCII character '\xdd' in file test_base64.py on line 153, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
SKIP_TESTS[test_base64.py]=1 SKIP_TESTS[test_base64.py]=1
SKIP_TESTS[test_decimal.py]=1 # Might be a POWER math thing
# output indicates expected == output, but this fails anyway. # output indicates expected == output, but this fails anyway.
# Maybe the underlying encoding is subtlely different so it # Maybe the underlying encoding is subtlely different so it
@@ -235,7 +236,7 @@ case $PYVERSION in
SKIP_TESTS[test_quopri.py]=1 SKIP_TESTS[test_quopri.py]=1
SKIP_TESTS[test_ioctl.py]=1 # it fails on its own SKIP_TESTS[test_ioctl.py]=1 # it fails on its own
fi fi
;; s ;;
3.6) 3.6)
. ./3.6-exclude.sh . ./3.6-exclude.sh
@@ -246,6 +247,9 @@ case $PYVERSION in
;; ;;
3.7) 3.7)
. ./3.7-exclude.sh . ./3.7-exclude.sh
if (( batch )) ; then
SKIP_TESTS[test_fileio.py]=1
fi
;; ;;
3.8) 3.8)
. ./3.8-exclude.sh . ./3.8-exclude.sh