This file is indexed.

/usr/share/doc/empty-expect/examples/runtests.sh is in empty-expect 0.6.20b-1ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh

echo "Starting endless tests"

while true; do
	for i in em_*; do
		echo "== Starting: $i ================================================" 
		./$i
		if [ $? != 0 ]; then
			echo "Error at test $i"
			exit 1
		fi
	done
done