#!/bin/bash me=${BASH_SOURCE[0]} function displaytime { local T=$1 local D=$((T/60/60/24)) local H=$((T/60/60%24)) local M=$((T/60%60)) local S=$((T%60)) (( $D > 0 )) && printf '%d days ' $D (( $H > 0 )) && printf '%d hours ' $H (( $M > 0 )) && printf '%d minutes ' $M (( $D > 0 || $H > 0 || $M > 0 )) && printf 'and ' printf '%d seconds\n' $S } # Python version setup FULLVERSION=$(pyenv local) PYVERSION=${FULLVERSION%.*} MINOR=${FULLVERSION##?.?.} typeset -i STOP_ONERROR=1 typeset -A SKIP_TESTS case $PYVERSION in 2.4) SKIP_TESTS=( [test_dis.py]=1 # We change line numbers - duh! [test_grp.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_threading.py]=1 # Long test - works ) ;; 2.5) SKIP_TESTS=( [test_contextlib.py]=1 # Syntax error - look at [test_dis.py]=1 # We change line numbers - duh! [test_grammar.py]=1 # Too many stmts. Handle large stmts [test_grp.py]=1 # Long test - might work Control flow? [test_pdb.py]=1 # Line-number specific [test_pwd.py]=1 # Long test - might work? Control flow? [test_queue.py]=1 # Control flow? [test_re.py]=1 # Probably Control flow? [test_trace.py]=1 # Line numbers are expected to be different [test_zipfile64.py]=1 # Runs ok but takes 204 seconds ) ;; 2.6) SKIP_TESTS=( [test_compile.py]=1 # Intermittent - sometimes works and sometimes doesn't [test_grp.py]=1 # Long test - might work Control flow? [test_opcodes.py]=1 [test_pwd.py]=1 # Long test - might work? Control flow? [test_re.py]=1 # Probably Control flow? [test_queue.py]=1 # Control flow? [test_strftime.py]=1 [test_trace.py]=1 # Line numbers are expected to be different [test_zipfile64.py]=1 # Skip Long test [test_zlib.py]=1 # Look at # .pyenv/versions/2.6.9/lib/python2.6/lib2to3/refactor.pyc # .pyenv/versions/2.6.9/lib/python2.6/pyclbr.pyc # .pyenv/versions/2.6.9/lib/python2.6/quopri.pyc -- look at ishex, is short # .pyenv/versions/2.6.9/lib/python2.6/random.pyc # .pyenv/versions/2.6.9/lib/python2.6/smtpd.pyc # .pyenv/versions/2.6.9/lib/python2.6/sre_parse.pyc # .pyenv/versions/2.6.9/lib/python2.6/tabnanny.pyc # .pyenv/versions/2.6.9/lib/python2.6/tarfile.pyc ) ;; 2.7) SKIP_TESTS=( # These are ok, but our test machine POWER has problems # so we skip.. [test_httplib.py]=1 # Ok, but POWER has problems with this [test_pdb.py]=1 # Ok, but POWER has problems with this [test_curses.py]=1 # Possibly fails on its own but not detected [test_dis.py]=1 # We change line numbers - duh! [test_doctest.py]=1 # Fails on its own [test_generators.py]=1 # control flow. uncompyle2 has problem here too [test_grammar.py]=1 # Too many stmts. Handle large stmts [test_io.py]=1 # Test takes too long to run [test_ioctl.py]=1 # Test takes too long to run [test_itertools.py]=1 # Fix erroneous reduction to "conditional_true". # See test/simple_source/bug27+/05_not_unconditional.py [test_memoryio.py]=1 # FIX [test_multiprocessing.py]=1 # On uncompyle2, taks 24 secs [test_pep352.py]=1 # ? [test_select.py]=1 # Runs okay but takes 11 seconds [test_socket.py]=1 # Runs ok but takes 22 seconds [test_subprocess.py]=1 # Runs ok but takes 22 seconds [test_sys_settrace.py]=1 # Line numbers are expected to be different [test_strtod.py]=1 # FIX [test_traceback.py]=1 # Line numbers change - duh. [test_unicode.py]=1 # Too long to run 11 seconds [test_xpickle.py]=1 # Runs ok but takes 72 seconds [test_zipfile64.py]=1 # Runs ok but takes 204 seconds ) ;; 3.5) SKIP_TESTS=( [test_decorators.py]=1 # Control flow wrt "if elif" [test_quopri.py]=1 # Fails in crontab environment? ) ;; 3.6) SKIP_TESTS=( [test_contains.py]=1 # Code "while False: yield None" is optimized away in compilation [test_decorators.py]=1 # Control flow wrt "if elif" [test_pow.py]=1 # Control flow wrt "continue" [test_quopri.py]=1 # Only fails on POWER ) ;; *) SKIP_TESTS=( [test_aepack.py]=1 [audiotests.py]=1 [test_dis.py]=1 # We change line numbers - duh! [test_generators.py]=1 # I think string formatting of docstrings gets in the way. Not sure ) ;; esac # Test directory setup srcdir=$(dirname $me) cd $srcdir fulldir=$(pwd) # DECOMPILER=uncompyle2 DECOMPILER=${DECOMPILER:-"$fulldir/../../bin/uncompyle6"} TESTDIR=/tmp/test${PYVERSION} if [[ -e $TESTDIR ]] ; then rm -fr $TESTDIR fi mkdir $TESTDIR || exit $? cp -r ~/.pyenv/versions/${PYVERSION}.${MINOR}/lib/python${PYVERSION}/test $TESTDIR cd $TESTDIR/test export PYTHONPATH=$TESTDIR # Run tests typeset -i i=0 typeset -i allerrs=0 if [[ -n $1 ]] ; then files=$1 typeset -a files_ary=( $(echo $1) ) if (( ${#files_ary[@]} == 1 )) ; then SKIP_TESTS=() fi else files=test_*.py fi typeset -i ALL_FILES_STARTTIME=$(date +%s) for file in $files; do # AIX bash doesn't grok [[ -v SKIP... ]] [[ ${SKIP_TESTS[$file]} == 1 ]] && continue # If the fails *before* decompiling, skip it! typeset -i STARTTIME=$(date +%s) if ! python $file >/dev/null 2>&1 ; then echo "Skipping test $file -- it fails on its own" continue fi typeset -i ENDTIME=$(date +%s) typeset -i time_diff (( time_diff = ENDTIME - STARTTIME)) if (( time_diff > 10 )) ; then echo "Skipping test $file -- test takes too long to run: $time_diff seconds" continue fi ((i++)) # (( i > 40 )) && break short_name=$(basename $file .py) decompiled_file=$short_name-${PYVERSION}.pyc $fulldir/compile-file.py $file && \ mv $file{,.orig} && \ echo ========== $(date +%X) Decompiling $file =========== $DECOMPILER $decompiled_file > $file rc=$? if (( rc == 0 )) ; then echo ========== $(date +%X) Running $file =========== python $file rc=$? else echo ======= Skipping $file due to compile/decompile errors ======== fi (( rc != 0 && allerrs++ )) if (( STOP_ONERROR && rc )) ; then echo "** Ran $i tests before failure **" exit $allerrs fi done typeset -i ALL_FILES_ENDTIME=$(date +%s) (( time_diff = ALL_FILES_ENDTIME - ALL_FILES_STARTTIME)) printf "Ran $i unit-test files in " displaytime $time_diff exit $allerrs