This file is indexed.

/usr/bin/catkin_test_results is in catkin 0.6.16-4.

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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python

from __future__ import print_function
import argparse
import os
import sys

# find the import relatively if available to work before installing catkin or overlaying installed version
if os.path.exists(os.path.join(os.path.dirname(__file__), '..', 'python', 'catkin', '__init__.py')):
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'python'))
from catkin.test_results import aggregate_results, print_summary, test_results


def main():
    parser = argparse.ArgumentParser(description='Outputs a summary of the test results. If there are any test errors or failures the scripts return code is 1.')
    parser.add_argument('test_results_dir', nargs='?', default=os.curdir, help='The path to the test results')
    parser.add_argument('--all', action='store_true', default=False, help='Show all test results even the ones without errors/failures as well as skipped xml files')
    parser.add_argument('--verbose', action='store_true', default=False, help='Show all tests which have errors or failed')
    args = parser.parse_args()

    # verify that workspace folder exists
    test_results_dir = os.path.abspath(args.test_results_dir)
    if not os.path.isdir(test_results_dir):
        sys.exit('Test results directory "%s" does not exist' % test_results_dir)

    try:
        results = test_results(
            test_results_dir, show_verbose=args.verbose, show_all=args.all)
        _, sum_errors, sum_failures = aggregate_results(results)
        print_summary(results, show_stable=args.all)
        if sum_errors or sum_failures:
            sys.exit(1)
    except Exception as e:
        sys.stderr.write(str(e))
        sys.exit(2)


if __name__ == '__main__':
    main()