File: test2.sh

package info (click to toggle)
python-rarfile 2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 340 kB
  • ctags: 306
  • sloc: python: 1,764; makefile: 156; sh: 36
file content (19 lines) | stat: -rwxr-xr-x 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

cp ../rarfile.py .

#ulimit -n 16

plist="python2.4 python2.5 python2.6 python2.7 python3.1 python3.2 python3.3 pypy jython jython2.7"

for py in $plist; do
  if which $py > /dev/null; then
    echo "== $py =="
    $py ./testseek.py
    $py ./testio.py
    $py ./testcorrupt.py --quick
  fi
done

rm -f rarfile.py