#!/bin/sh -e

cp -a tests/* $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP
for file in *.R; do
   echo "BEGIN TEST $file"
   R --no-save -f $file
done
