Commit 64593e7c authored by Kentoku SHIBA's avatar Kentoku SHIBA

Skip Mroonga if platform is big endian. Remove last test disabling.

parent 6cd18ec8
......@@ -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")
......
......@@ -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.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment