summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2017-10-11 14:41:09 +0300
committerSergei Petrunia <psergey@askmonty.org>2017-10-11 14:41:09 +0300
commit8f6266e9271d6f100ec783319c80ff410aded37d (patch)
tree3bd6734899f06fcf797c244f6e623000dc5ce761
parentd1eee0407f7d531a9626b81a150642451b045a03 (diff)
downloadmariadb-git-8f6266e9271d6f100ec783319c80ff410aded37d.tar.gz
MDEV-13852: temporarily disable running tests on windows
-rw-r--r--storage/rocksdb/mysql-test/rocksdb/suite.pm4
-rw-r--r--storage/rocksdb/mysql-test/rocksdb/t/disabled.def5
2 files changed, 9 insertions, 0 deletions
diff --git a/storage/rocksdb/mysql-test/rocksdb/suite.pm b/storage/rocksdb/mysql-test/rocksdb/suite.pm
index 79c630f87f1..133d9344414 100644
--- a/storage/rocksdb/mysql-test/rocksdb/suite.pm
+++ b/storage/rocksdb/mysql-test/rocksdb/suite.pm
@@ -1,5 +1,7 @@
package My::Suite::Rocksdb;
+use My::SysInfo;
+
#
# Note: ../rocksdb_sys_vars/suite.pm file has a similar
# function. If you modify this file, consider modifying that one, too.
@@ -21,5 +23,7 @@ $ENV{MARIAROCKS_SST_DUMP}="$sst_dump";
# Temporarily disable testing under valgrind, due to MDEV-12439
return "RocksDB tests disabled under valgrind" if ($::opt_valgrind);
+return "Temporarily disabled on Windows due to MDEV-13852" if (My::SysInfo::IS_WINDOWS);
+
bless { };
diff --git a/storage/rocksdb/mysql-test/rocksdb/t/disabled.def b/storage/rocksdb/mysql-test/rocksdb/t/disabled.def
index a60ed6fb4c7..6a352e9511b 100644
--- a/storage/rocksdb/mysql-test/rocksdb/t/disabled.def
+++ b/storage/rocksdb/mysql-test/rocksdb/t/disabled.def
@@ -1,3 +1,8 @@
+##
+## See also: storage/rocksdb/mysql-test/rocksdb/suite.pm - tests on
+## platforms and under valgrind are disabled from there.
+##
+
cons_snapshot_serializable : Consistent read does not work on serializable
level_read_uncommitted : Not supported
level_serializable: Not supported