#!/bin/sh

set -e

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

cd debian/tests

gfortran -o hello hello.f90  `pkgconf mpi --libs --cflags` 

mpirun -n 1 ./hello
