#!/bin/sh

set -e

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

cd debian/tests

cc -o hello hello.c  `pkg-config mpi --libs --cflags` 

mpirun -n 1 ./hello
