From 3120de0c0235ba9a44948d5dd9c34a06991891b7 Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 4 Feb 2020 22:01:49 -0500 Subject: [PATCH] Go over older 2.4 runtests failures --- test/stdlib/2.5-exclude.sh | 42 +++++++++++++++++++++++++++++++++++++- test/stdlib/runtests.sh | 15 +------------- 2 files changed, 42 insertions(+), 15 deletions(-) diff --git a/test/stdlib/2.5-exclude.sh b/test/stdlib/2.5-exclude.sh index 007ce890..9d9af6a4 100644 --- a/test/stdlib/2.5-exclude.sh +++ b/test/stdlib/2.5-exclude.sh @@ -1,4 +1,44 @@ SKIP_TESTS=( + [test_aepack.py]=1 # it fails on its own + [test_al.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_hk.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_curses.py]=1 # it fails on its own + [test_dbm.py]=1 # it fails on its own + [test_dl.py]=1 # it fails on its own + [test_gdbm.py]=1 # it fails on its own + [test_gl.py]=1 # it fails on its own + [test_imageop.py]=1 # it fails on its own + [test_imgfile.py]=1 # it fails on its own + [test_linuxaudiodev.py]=1 # it fails on its own + [test_macfs.py]=1 # it fails on its own + [test_macostools.py]=1 # it fails on its own + [test_nis.py]=1 # it fails on its own + [test_normalization.py]=1 # it fails on its own + [test_ossaudiodev.py]=1 # it fails on its own + [test_pep277.py]=1 # it fails on its own + [test_plistlib.py]=1 # it fails on its own + [test_rgbimg.py]=1 # it fails on its own + [test_scriptpackages.py]=1 # it fails on its own + [test_sunaudiodev.py]=1 # it fails on its own + [test_support.py]=1 # it fails on its own + [test_tcl.py]=1 # it fails on its own + [test_urllib2net.py]=1 # it fails on its own + [test_urllibnet.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_zlib.py]=1 # it fails on its own + + [test_coercion.py]=1 [test_decimal.py]=1 [test_dis.py]=1 # We change line numbers - duh! @@ -28,7 +68,7 @@ SKIP_TESTS=( [test_struct.py]=1 # "if and" confused for if .. assert and [test_sunaudiodev.py]=1 # it fails on its own [test_support.py]=1 # it fails on its own - [test_tcl.py=1] # it fails on its own + [test_tcl.py]=1 # it fails on its own [test_threading.py]=1 # test takes too long to run: 11 seconds [test_thread.py]=1 # test takes too long to run: 36 seconds [test_trace.py]=1 # Line numbers are expected to be different diff --git a/test/stdlib/runtests.sh b/test/stdlib/runtests.sh index 65c56cd6..4f57eae1 100755 --- a/test/stdlib/runtests.sh +++ b/test/stdlib/runtests.sh @@ -51,20 +51,7 @@ function timeout_cmd { typeset -A SKIP_TESTS case $PYVERSION in 2.4) - SKIP_TESTS=( - [test_decimal.py]=1 # - [test_dis.py]=1 # We change line numbers - duh! - [test_generators.py]=1 # Investigate - [test_grammar.py]=1 # Too many stmts. Handle large stmts - [test_grp.py]=1 # Long test - might work Control flow? - [test_pep247.py]=1 # Long test - might work? Control flow? - [test_pwd.py]=1 # Long test - might work? Control flow? - [test_socketserver.py]=1 # -- test takes too long to run: 40 seconds - [test_threading.py]=1 # test takes too long to run: 11 seconds - [test_thread.py]=1 # test takes too long to run: 36 seconds - [test_trace.py]=1 # Long test - works - [test_zipfile64.py]=1 # Runs ok but takes 204 seconds - ) + . ./2.4-exclude.sh ;; 2.5) . ./2.5-exclude.sh