This file is indexed.

/usr/lib/mysql-testsuite/t/named_pipe.test is in percona-server-test-5.6 5.6.22-rel71.0-0ubuntu4.

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
# We currently only have named pipe support on windows, so
# in order  to optimize things we skip this test on all
# other platforms
--source include/windows.inc

# thread pool causes different results
-- source include/not_threadpool.inc

# Only run this test if named pipe is avaliable
let $nmp= query_get_value("SHOW VARIABLES LIKE 'named_pipe'", Value, 1);
if ($nmp != ON){
  skip No named pipe support;
}

# Connect using named pipe for testing
connect(pipe_con,localhost,root,,,,,PIPE);

# Source select test case
-- source include/common-tests.inc

connection default;
disconnect pipe_con;