This file is indexed.

/usr/share/perl5/FCM/CLI/fcm-test-battery.pod is in fcm 2016.12.0-1.

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
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
=head1 NAME

fcm test-battery

=head1 SYNOPSIS

Run FCM self tests.

    fcm test-battery [...]

=head1 ARGUMENTS

Change directory to the FCM source tree, and runs this shell commmand:

    exec prove -j "${NPROC:-9}" -s -r "${@:-t}"

where NPROC is the number of processors on your computer. You can override the
L<prove|prove> command line by specifying extra arguments. E.g. If you do not
want to run the full test suite, you can specify the names of individual test
files or their containing directories as extra arguments. For example:

Run the full test suite with the default options.

    fcm test-battery

Run the full test suite with 12 processes.

    fcm test-battery -j 12

Run only tests under C<t/fcm-make/> with 12 processes.

    fcm test-battery -j 12 t/fcm-make

Run only C<t/fcm-make/10-log.t> in verbose mode.

    fcm test-battery -v t/fcm-make/10-log.t

=head1 OPTIONS

Environment variables:

=over 4

=item TEST_PROJECT

If this is set, run CM tests using a project sub-hierarchy in the test
repositories.

=item TEST_REMOTE_HOST

If this is set, run CM tests using an auto-generated Subversion server on the
host specified.

=back

=cut