This file is indexed.

/usr/share/doc/libdrmaa1.0-ruby/examples/ruby/test_all.sh is in libdrmaa1.0-ruby 8.1.9+dfsg-7build1.

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
#!/bin/sh
./example.rb && ./array.rb && ./sig.rb /bin/sleep 1 && ./stream_and_trap.rb && ./threads.rb && ./attributes.rb
ret=$?
if [ $ret -ne 0 ]; then
	echo "##### failed #####"
else
	echo "##### success #####"
fi
exit $ret