/usr/share/doc/r-cran-msm/run-unit-test is in r-cran-msm 1.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh -e
if [ "$ADTTMP" = "" ] ; then
ADTTMP=`mktemp -d /tmp/r-cran-msm-test.XXXXXX`
fi
cd $ADTTMP
cp -a /usr/share/doc/r-cran-msm/tests/* $ADTTMP
find . -name "*.gz" -exec gunzip \{\} \;
for testx in `ls *.R` ; do
LC_ALL=C.UTF-8 R --no-save < $testx
done
|