1#!/bin/sh
2
3./libopenmpttest >/dev/null 2>&1
4
5if [ $? -eq 0 ]; then
6   echo "PASS: libopenmpttest"
7else
8   echo "FAIL: libopenmpttest"
9fi
10