This file is indexed.

/usr/lib/xenomai/testsuite/xeno-test-run-wrapper is in xenomai-runtime 2.6.2.1-2ubuntu2.

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
16
17
18
19
20
21
22
#! /bin/bash

XENO_TEST_IN="/tmp/xeno-test-in-$$"
XENO_TEST_OUT="/tmp/xeno-test-out-$$"

check_alive()
{
    echo check_alive ${1+"$@"} > "$XENO_TEST_OUT"
}

start_load()
{
    echo start_load > "$XENO_TEST_OUT"
}

wait_load()
{
    read rc < "$XENO_TEST_IN"
}

script="$1"; shift
. $script