#!/bin/sh

set -e

### Compile and run a simple MPI application
 cd debian/tests

mpif77 -o hello hello.f

mpirun -n 1 ./hello
rm  ./hello
