This file is indexed.

/usr/share/doc/conservation-code/installation-test is in conservation-code 20110309.0-5.

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
13
14
15
16
17
18
19
20
#!/bin/sh
# autopkgtest check: build and run with default test data, taken from package's readme.txt
# Author: Tatiana Malygina <merlettaia@gmail.com>

set -e

pkg=conservation-code

if [ "$ADTTMP" = "" ] ; then
  ADTTMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
fi

cd $ADTTMP

cp -a /usr/share/doc/${pkg}/examples/* .

#following call doesn't produce error when default alignment matrix can be found
score_conservation -o alignment.scores 2plc__hssp-filtered.aln
[ -e alignment.scores ]