This file is indexed.

/usr/share/gps/aunit/harness.adb.tmpl is in gnat-gps-common 5.0-6.

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
with AUnit;
with @_HARNESS_TEST_SUITE_PACKAGE_@;

---@_REPLACE_ALL(./-):HARNESS_NAME_@---
-- @_HARNESS_NAME_@ --
---@_REPLACE_ALL(./-):HARNESS_NAME_@---

procedure @_HARNESS_NAME_@ is

   procedure Run is new AUnit.Test_Runner (@_HARNESS_TEST_SUITE_PACKAGE_@.@_HARNESS_TEST_SUITE_@);

begin
   Run;
end @_HARNESS_NAME_@;