#!/bin/sh -e

pkg=r-cran-evaluate

if [ "$ADTTMP" = "" ] ; then
  ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
fi
cd $ADTTMP
cp -a /usr/share/doc/${pkg}/tests/* $ADTTMP
# Make sure we are using C locale to pass all tests
LC_ALL=C R --no-save < test-all.R
rm -rf $ADTTMP/*
