mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / t / named_pipe.test
blobe88fd8e1ef8d14b0cbe1c0cf979a8866b0cd0260
1 # We currently only have named pipe support on windows, so
2 # in order  to optimize things we skip this test on all
3 # other platforms
4 --source include/windows.inc
6 # Only run this test if named pipe is avaliable
7 let $nmp= query_get_value("SHOW VARIABLES LIKE 'named_pipe'", Value, 1);
8 if (`SELECT '$nmp' != 'ON'`){
9   skip No named pipe support;
12 # Connect using named pipe for testing
13 connect(pipe_con,localhost,root,,,,,PIPE);
15 # Source select test case
16 -- source include/common-tests.inc
18 connection default;
19 disconnect pipe_con;