summaryrefslogtreecommitdiff
path: root/mysql-test/suite
diff options
context:
space:
mode:
authorunknown <Dao-Gang.Qu@sun.com>2010-02-05 14:49:01 +0800
committerunknown <Dao-Gang.Qu@sun.com>2010-02-05 14:49:01 +0800
commit128c9be664caa06142ad299c1a3bf17426468a65 (patch)
treeada103da3799403d9aee88eb21fafb3459d2dab7 /mysql-test/suite
parent4f1331417c8c3070216a6feba90bf85324255f26 (diff)
downloadmariadb-git-128c9be664caa06142ad299c1a3bf17426468a65.tar.gz
Bug #50061 Test "rpl_loaddata_symlink" uses a Unix-specific "run-slave" script
Bug #49984 Test 'rpl_loaddata_symlink' fails with "Could not find target log" Sometimes the symbolic link is available on Windows if you have some Unix (emulation) layer installed like Cygwin, MKS or other. But symbolic link is not always available. It depends on versions, file volume and system environment of Windows. And the symbolic link is not typically used on Windows, at least not in the degree and style they are used on Unix. We can not change the test case to do without symbolic link, because the test case is used to test that if the symbolic link works fine. To fix the problem, skip the test on windows. mysql-test/suite/rpl/t/rpl_loaddata_symlink.test: Added code to skip the test on windows.
Diffstat (limited to 'mysql-test/suite')
-rw-r--r--mysql-test/suite/rpl/t/rpl_loaddata_symlink.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/t/rpl_loaddata_symlink.test b/mysql-test/suite/rpl/t/rpl_loaddata_symlink.test
index d3ee2766314..63e65834e5b 100644
--- a/mysql-test/suite/rpl/t/rpl_loaddata_symlink.test
+++ b/mysql-test/suite/rpl/t/rpl_loaddata_symlink.test
@@ -4,6 +4,7 @@
# if the path of the load data file is a symbolic link.
#
--source include/master-slave.inc
+--source include/not_windows.inc
--source include/have_binlog_format_statement.inc
create table t1(a int not null auto_increment, b int, primary key(a) );