From 7721fbd27608564907a4a9c2118bc8eb680643bb Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 26 Jan 2020 01:43:21 -0500 Subject: [PATCH] runtest exclusions for POWER (again) --- test/stdlib/runtests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/stdlib/runtests.sh b/test/stdlib/runtests.sh index 54510159..8028bd82 100755 --- a/test/stdlib/runtests.sh +++ b/test/stdlib/runtests.sh @@ -146,6 +146,7 @@ case $PYVERSION in 3.3) . ./3.3-exclude.sh if (( batch )) ; then + SKIP_TESTS[test_ftplib.py]=1 # Runs too long on POWER; over 15 seconds SKIP_TESTS[test_idle.py]=1 # No tk SKIP_TESTS[test_pep352.py]=1 # UnicodeDecodeError may be funny on weird environments SKIP_TESTS[test_pep380.py]=1 # test_delegating_generators_claim_to_be_running ? @@ -161,6 +162,7 @@ case $PYVERSION in # Fails in crontab environment? # Figure out what's up here SKIP_TESTS[test_exception_variations.py]=1 + SKIP_TESTS[test_mailbox.py]=1 # Takes to long on POWER; over 15 secs SKIP_TESTS[test_quopri.py]=1 fi ;;