third_party.pylibs.pylint.src/test/fulltest.sh
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

17 lines
505 B
Bash
Executable File

#!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
PYVERSIONS="2.2 2.3 2.4"
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