File: buildtestall.sh

package info (click to toggle)
mpi4py 1.3%2Bhg20120611-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,020 kB
  • sloc: python: 9,503; ansic: 6,296; makefile: 571; f90: 158; sh: 146; cpp: 103
file content (28 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

PYVER="2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2"
MPIIMPL="mpich2 openmpi sunmpi mpich1 lammpi"
QUIET=-q

for arg in "$@" ; do
    case "$arg" in
    -v)
    QUIET=
    shift
    ;;
    --py=*)
    PYVER=`echo A$arg | sed -e 's/A--py=//g'`
    shift
    ;;
    --mpi=*)
    MPIIMPL=`echo A$arg | sed -e 's/A--mpi=//g'`
    shift
    ;;
    esac
done

for py in $PYVER; do
    for mpi in $MPIIMPL; do
        ./misc/buildtest.sh $QUIET --py="$py" --mpi="$mpi" $@
    done
done