#!/bin/sh

set -e

### Compile and run a simple MPI application, via pkgconf

cd debian/tests

gfortran -o hello hello.f90  `pkgconf ompi-fort --libs --cflags` 

mpirun -n 1 ./hello
