run.sh 278 B

1234567891011121314
  1. #!/bin/sh
  2. # ensure we can use unicode filenames in the test
  3. export LC_ALL=en_US.UTF-8
  4. THISDIR=`dirname $0`
  5. export PYTHONPATH=${THISDIR}/..
  6. echo "python2.6"
  7. python2.6 ${THISDIR}/test.py
  8. echo "python2.7"
  9. python2.7 ${THISDIR}/test.py
  10. echo "python3.0"
  11. python3 ${THISDIR}/test.py