This file is indexed.

/usr/share/doc/libtest-valgrind-perl/examples/map.pl is in libtest-valgrind-perl 1.14-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
#!/usr/bin/env perl

use strict;
use warnings;

use lib 'blib/lib';
use Test::Valgrind;

{
 local $SIG{ALRM} = sub { kill "TERM", $$ };
 alarm 1;
 while (1) { map 1, 1 }
}