#!/bin/sh -e

pkgname=clubSandwich
debname=r-cran-clubsandwich

if [ "$AUTOPKGTEST_TMP" = "" ] ; then
    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi
cd $AUTOPKGTEST_TMP
cp -a /usr/share/doc/$debname/tests/* $AUTOPKGTEST_TMP
gunzip -r *

hostarch=$(dpkg-architecture -qDEB_HOST_ARCH)

if [ "$hostarch" = "armhf" ] ; then
    sed -i -e '/^test_that."clubSandwich agrees with metafor::robust() for CR0."/,/^})/d' testthat/test_rma-mv.R
fi

for testfile in *.R; do
    echo "BEGIN TEST $testfile"
    LC_ALL=C.UTF-8 R --no-save < $testfile
done

