File: compile_tests

package info (click to toggle)
decompyle 2.3.2-4.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,324 kB
  • ctags: 66,233
  • sloc: python: 70,351; ansic: 2,329; makefile: 43; sh: 14
file content (8 lines) | stat: -rwxr-xr-x 195 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh

for ver in "" 1.4 1.5 1.6 2 2.0 2.1 2.2 2.3 2.4; do
    which python$ver > /dev/null 2>&1 && \
    ( python$ver    test/compile_tests
      python$ver -O test/compile_tests
    )
done