#!/bin/bash
set -e

pkg="libparasail-dev"

if [ "$AUTOPKGTEST_TMP" = "" ] ; then
  AUTOPKGTEST_TMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
  trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi

cp -a /usr/share/doc/${pkg}/examples/* $AUTOPKGTEST_TMP

cd $AUTOPKGTEST_TMP
gunzip -r *

for testfile in *.cpp; do
    echo "BEGIN TEST $testfile"
    g++ $testfile -Wall -lparasail -lm -o testcompiled
    [ -s testcompiled ]
    [ -x testcompiled ]
    rm testcompiled
    echo "Test for $testfile passes!"
    echo "=========================="
done
