This file is indexed.

/usr/share/doc/cxxtest/examples/buildRunner23.sh is in cxxtest 4.4-1.

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
15
#!/bin/bash

. GetGlobals.sh
export PATH=$CXXTEST/bin:$PATH

# @main:
cxxtestgen --error-printer -o runner.cpp Namespace2.h
# @:main

# @compile:
g++ -o runner -I$CXXTEST -I. runner.cpp
# @:compile

./runner
\rm -f runner runner.cpp