#!/bin/bash
set -e

pkg=libadept-dev

export LC_ALL=C.UTF-8
if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  # Double quote below to expand the temporary directory variable now versus
  # later is on purpose.
  # shellcheck disable=SC2064
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp -r test/ $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP/test

for F in test_adept test_misc test_thread_safe test_no_lib test_arrays test_fixed_arrays test_constructors test_derivatives test_array_derivatives test_thread_safe_arrays test_packet_operations test_fastexp test_reduce_active test_minimizer test_interp ; do
    g++ -Wall -Wextra $F.cpp algorithm.cpp -ladept -o $F;
    ./$F
done
