Reinstate run tests that now work

This commit is contained in:
rocky
2018-01-09 08:50:47 -05:00
parent abcb769fdf
commit 4ea7b9aa2e

View File

@@ -12,13 +12,9 @@ typeset -A SKIP_TESTS
case $PYVERSION in case $PYVERSION in
2.4) 2.4)
SKIP_TESTS=( SKIP_TESTS=(
[test_codecs.py]=1 # need to fix tryelse
[test_decorators.py]=1 # Syntax error decorators? [test_decorators.py]=1 # Syntax error decorators?
[test_dis.py]=1 # We change line numbers - duh! [test_dis.py]=1 # We change line numbers - duh!
[test_frozen.py]=1
[test_grp.py]=1 # Long test - might work Control flow? [test_grp.py]=1 # Long test - might work Control flow?
[test_imp.py]=1 # Control flow?
[test_import.py]=1 # Control flow?
[test_math.py]=1 # Control flow? [test_math.py]=1 # Control flow?
[test_pwd.py]=1 # Long test - might work? Control flow? [test_pwd.py]=1 # Long test - might work? Control flow?
[test_queue.py]=1 # Control flow? [test_queue.py]=1 # Control flow?
@@ -29,17 +25,13 @@ case $PYVERSION in
;; ;;
2.5) 2.5)
SKIP_TESTS=( SKIP_TESTS=(
[test_codecs.py]=1 # need to fix tryelse
[test_coercion.py]=1
[test_contextlib.py]=1 [test_contextlib.py]=1
[test_decorators.py]=1 # Syntax error decorators? [test_decorators.py]=1 # Syntax error decorators?
[test_dis.py]=1 # We change line numbers - duh! [test_dis.py]=1 # We change line numbers - duh!
[test_exceptions.py]=1 [test_exceptions.py]=1
[test_frozen.py]=1
[test_functools.py]=1 [test_functools.py]=1
[test_grammar.py]=1 # Too many stmts. Handle large stmts [test_grammar.py]=1 # Too many stmts. Handle large stmts
[test_grp.py]=1 # Long test - might work Control flow? [test_grp.py]=1 # Long test - might work Control flow?
[test_imp.py]=1
[test_math.py]=1 # Control flow? [test_math.py]=1 # Control flow?
[test_pdb.py]=1 [test_pdb.py]=1
[test_pwd.py]=1 # Long test - might work? Control flow? [test_pwd.py]=1 # Long test - might work? Control flow?
@@ -48,7 +40,7 @@ case $PYVERSION in
[test_sax.py]=1 # Control flow? [test_sax.py]=1 # Control flow?
[test_trace.py]=1 # Line numbers are expected to be different [test_trace.py]=1 # Line numbers are expected to be different
[test_types.py]=1 # Control flow? [test_types.py]=1 # Control flow?
nn [test_zipfile64.py]=1 # Runs ok but takes 204 seconds [test_zipfile64.py]=1 # Runs ok but takes 204 seconds
) )
;; ;;
2.6) 2.6)