dwww Home | Show directory contents | Find package

#!/bin/sh -e

debname=r-cran-arsenal

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 *
cd tests

hostarch=$(dpkg-architecture -qDEB_HOST_ARCH)
# Ignore two tests on i386, arm64 and ppc64el
if [ "$hostarch" = "i386" -o "$hostarch" = "arm64" -o "$hostarch" = "ppc64el" ] ; then
  sed -i -e '/^test_that("02.23.2018: wrapping long labels (#59)/,/^})/d' testthat/test_lhs_modelsum.R
  sed -i -e '/^test_that("05.31.2018: similar column names (#100)/,/^})/d' testthat/test_modelsum.R
fi

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

Generated by dwww version 1.15 on Sat May 18 09:43:35 CEST 2024.