third_party.pylibs.pylint.src/test/fulltest.sh
2008-09-23 12:59:55 +02:00

18 lines
509 B
Bash
Executable File

#!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
PYVERSIONS=`pyversions -iv`
fi
for ver in $PYVERSIONS; do
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo `python$ver -V`
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
python$ver runtests.py
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
echo `python$ver -V` -OO
python$ver -OO runtests.py
done