#!/bin/bash
set -e

pkg="libswiss-perl"

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 *

echo "Execute example"
./example.pl SWISS100.dat > test1
[ -s test1 ] && head -20 test1 && rm -f test1
./example.pl varsplic.dat > test2
[ -s test2 ] && head -20 test2 && rm -f test2
echo "======================================="
echo "PASS"
