This file is indexed.

/usr/share/doc/r-bioc-biostrings/run-unit-test is in r-bioc-biostrings 2.38.0-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
12
#!/bin/sh -e
oname=Biostrings
pkg=r-bioc-`echo $oname | tr [A-Z] [a-z]`
if [ "$ADTTMP" = "" ] ; then
  ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
fi
cd $ADTTMP
cp /usr/lib/R/site-library/$oname/unitTests/* $ADTTMP
for runtest in `ls *.R` ; do
    R --no-save < $runtest
done
rm -f $ADTTMP/*