third_party.pylibs.pylint.src/test/fulltest.sh

18 lines
509 B
Bash
Raw Normal View History

2006-04-26 10:48:09 +00:00
#!/bin/sh
if [ $@ ] ; then
PYVERSIONS=$@
else
2008-09-23 10:59:55 +00:00
PYVERSIONS=`pyversions -iv`
2006-04-26 10:48:09 +00:00
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
2008-09-23 10:59:55 +00:00
done