#!/bin/sh

set -e

### Compile and run a simple MPI application, via pkg-config

cd debian/tests

f77  -o hello hello.f  `pkg-config mpi --libs --cflags` 

mpirun -n 1 ./hello
