#!/bin/sh

set -e

### Compile and run a simple MPI application

cd debian/tests
mpicc -o hello hello.c

mpiexec -n 1 ./hello
rm ./hello
