summaryrefslogtreecommitdiff
path: root/storage/mroonga
diff options
context:
space:
mode:
authorKentoku SHIBA <kentokushiba@gmail.com>2014-10-23 00:31:01 +0900
committerKentoku SHIBA <kentokushiba@gmail.com>2014-10-23 00:31:01 +0900
commit64593e7c5771ed341058a9b1d5da7587206dbc1e (patch)
tree108e629bbb84119da963f77213bb0346cf490a42 /storage/mroonga
parent6cd18ec86c288d425b388dc1b66f82d42af6c5ca (diff)
downloadmariadb-git-64593e7c5771ed341058a9b1d5da7587206dbc1e.tar.gz
Skip Mroonga if platform is big endian. Remove last test disabling.
Diffstat (limited to 'storage/mroonga')
-rw-r--r--storage/mroonga/CMakeLists.txt7
-rw-r--r--storage/mroonga/mysql-test/mroonga/storage/disabled.def8
2 files changed, 7 insertions, 8 deletions
diff --git a/storage/mroonga/CMakeLists.txt b/storage/mroonga/CMakeLists.txt
index 5881bd5e9b2..fe467cba48f 100644
--- a/storage/mroonga/CMakeLists.txt
+++ b/storage/mroonga/CMakeLists.txt
@@ -20,6 +20,13 @@
cmake_minimum_required(VERSION 2.6)
project(mroonga)
+include(TestBigEndian)
+test_big_endian(BIG_ENDIAN)
+if(BIG_ENDIAN)
+ message(STATUS "Mroonga is not supported on big-endian")
+ return()
+endif()
+
if(MSVC)
if(MSVC_VERSION LESS 1600)
message(STATUS "Mroonga supports only MSVC 2010 or later")
diff --git a/storage/mroonga/mysql-test/mroonga/storage/disabled.def b/storage/mroonga/mysql-test/mroonga/storage/disabled.def
index 9f5a4d0d2e0..53a2b8a4af9 100644
--- a/storage/mroonga/mysql-test/mroonga/storage/disabled.def
+++ b/storage/mroonga/mysql-test/mroonga/storage/disabled.def
@@ -5,11 +5,3 @@ create_table_token_filters_index_comment_multiple_token_filters : Bundled Mroong
create_table_token_filters_index_comment_one_token_filter : Bundled Mroonga does not support token filter yet.
create_table_token_filters_table_comment_multiple_token_filters : Bundled Mroonga does not support token filter yet.
create_table_token_filters_table_comment_one_token_filter : Bundled Mroonga does not support token filter yet.
-foreign_key_create : Bundled Mroonga does not support this test yet.
-optimization_skip_count_index_view : Bundled Mroonga does not support this test yet.
-alter_table_disable_keys_primary : Bundled Mroonga does not support this test yet.
-alter_table_enable_keys_primary : Bundled Mroonga does not support this test yet.
-column_enum_many_with_index : Bundled Mroonga does not support this test yet.
-column_groonga_index_int_other_table : Bundled Mroonga does not support this test yet.
-column_signed_int_with_index : Bundled Mroonga does not support this test yet.
-column_signed_mediumint_with_index : Bundled Mroonga does not support this test yet.