mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
562deff31c
Improve test for shm on windows mysql-test/include/windows.inc: improve "skip message" and don't require a result file mysql-test/r/shm.result: Update result after adding more tests mysql-test/t/shm-master.opt: Add $MTR_BUILD_THREAD to get a unique shared memory base name mysql-test/t/shm.test: Run a bunch of more test to check shm mysql-test/r/named_pipe.result: New BitKeeper file ``mysql-test/r/named_pipe.result'' mysql-test/t/named_pipe-master.opt: New BitKeeper file ``mysql-test/t/named_pipe-master.opt'' mysql-test/t/named_pipe.test: New BitKeeper file ``mysql-test/t/named_pipe.test''
14 lines
409 B
Text
14 lines
409 B
Text
# 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
|
|
|
|
# Only run this test if named pipe is avaliable
|
|
let $nmp= query_get_value("SHOW VARIABLES LIKE 'named_pipe'", Value, 1);
|
|
if (`SELECT '$nmp' != 'ON'`){
|
|
skip No named pipe support;
|
|
}
|
|
|
|
# Source select test case
|
|
-- source include/common-tests.inc
|
|
|