#!/bin/sh

set -e

cd debian/tests

### Compile and run a simple MPI application

mpif77 -o hello hello.f

mpirun -n 1 ./hello

rm ./hello
