From 64100bd0c9b6e1467ce244ad1790938fb95ac371 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 26 Jan 2020 00:11:29 -0500 Subject: [PATCH] Runtest exclusions --- test/stdlib/2.6-exclude.sh | 1 + test/stdlib/3.6-exclude.sh | 2 +- test/stdlib/runtests.sh | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/stdlib/2.6-exclude.sh b/test/stdlib/2.6-exclude.sh index 2ad7bd0d..6b458b2c 100644 --- a/test/stdlib/2.6-exclude.sh +++ b/test/stdlib/2.6-exclude.sh @@ -65,6 +65,7 @@ SKIP_TESTS=( [test_sunaudiodev.py]=1 # it fails on its own [test_support.py]=1 # # it fails on it s own + [test_threading.py]=1 # fails on its own? [test_trace.py]=1 # Line numbers are expected to be different [test_urllib2_localnet.py]=1 # test takes too long to run: 12 seconds diff --git a/test/stdlib/3.6-exclude.sh b/test/stdlib/3.6-exclude.sh index 213dc3ff..c3a8da27 100644 --- a/test/stdlib/3.6-exclude.sh +++ b/test/stdlib/3.6-exclude.sh @@ -1,5 +1,5 @@ SKIP_TESTS=( - [test_cmd.py]=1 # FIXME: grammar START symbol bug: Works on c90ff51 + [test_binop.py]=1 # FIXME: grammar START symbol bug: Works on c90ff51 [test_decorators.py]=1 # FIXME: Works on c90ff51 [test_format.py]=1 # FIXME: works on c90ff51 [test_locale.py]=1 # FIXME: Works on c90ff51 diff --git a/test/stdlib/runtests.sh b/test/stdlib/runtests.sh index f9551994..993aac64 100755 --- a/test/stdlib/runtests.sh +++ b/test/stdlib/runtests.sh @@ -176,7 +176,8 @@ case $PYVERSION in SKIP_TESTS[test_exception_variations.py]=1 SKIP_TESTS[test_quopri.py]=1 SKIP_TESTS[test_ioctl.py]=1 # it fails on its own - SKIP_TESTS[test_venv.py]=1 # takes to long 11 seconds + SKIP_TESTS[test_tarfile.py]=1 # too long to run on POWER 15 secs + SKIP_TESTS[test_venv.py]=1 # takes too long 11 seconds fi ;;