blob: 8ebcd93b1e9da9a5ebdaa81706aa270324970cf1 [file] [log] [blame]
Lei Zhangeb6fc512016-03-16 22:43:31 -04001# Copyright (c) 2015-2016 The Khronos Group Inc.
2#
David Neto9fc86582016-09-01 15:33:59 -04003# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
Lei Zhangeb6fc512016-03-16 22:43:31 -04006#
David Neto9fc86582016-09-01 15:33:59 -04007# http://www.apache.org/licenses/LICENSE-2.0
Lei Zhangeb6fc512016-03-16 22:43:31 -04008#
David Neto9fc86582016-09-01 15:33:59 -04009# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Lei Zhangeb6fc512016-03-16 22:43:31 -040014
Lei Zhang1a050b12016-06-21 18:29:36 -040015# Add a SPIR-V Tools unit test. Signature:
16# add_spvtools_unittest(
17# TARGET target_name
18# SRCS src_file.h src_file.cpp
19# LIBS lib1 lib2
20# )
Lei Zhang2ea74492016-05-22 13:48:08 -040021
Lei Zhang71fac5a2016-08-05 13:46:45 -040022if (NOT "${SPIRV_SKIP_TESTS}")
23 if (TARGET gmock_main)
Lei Zhangeb6fc512016-03-16 22:43:31 -040024 message(STATUS "Found Google Mock, building tests.")
Lei Zhangeb6fc512016-03-16 22:43:31 -040025 else()
26 message(STATUS "Did not find googletest, tests will not be built."
27 "To enable tests place googletest in '<spirv-dir>/external/googletest'.")
28 endif()
29endif()
Lei Zhang71fac5a2016-08-05 13:46:45 -040030
31function(add_spvtools_unittest)
32 if (NOT "${SPIRV_SKIP_TESTS}" AND TARGET gmock_main)
33 set(one_value_args TARGET)
34 set(multi_value_args SRCS LIBS)
35 cmake_parse_arguments(
36 ARG "" "${one_value_args}" "${multi_value_args}" ${ARGN})
Lei Zhangef600df2016-09-07 17:26:18 -040037 set(target test_${ARG_TARGET})
38 add_executable(${target} ${ARG_SRCS})
39 spvtools_default_compile_options(${target})
Lei Zhang71fac5a2016-08-05 13:46:45 -040040 if(${COMPILER_IS_LIKE_GNU})
Lei Zhangef600df2016-09-07 17:26:18 -040041 target_compile_options(${target} PRIVATE -Wno-undef)
Lei Zhang71fac5a2016-08-05 13:46:45 -040042 endif()
Lei Zhang190b0d32016-08-07 22:49:00 -040043 if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
Lei Zhang71fac5a2016-08-05 13:46:45 -040044 # Disable C4503 "decorated name length exceeded" warning,
45 # triggered by some heavily templated types.
46 # We don't care much about that in test code.
47 # Important to do since we have warnings-as-errors.
Lei Zhangef600df2016-09-07 17:26:18 -040048 target_compile_options(${target} PRIVATE /wd4503)
Lei Zhang71fac5a2016-08-05 13:46:45 -040049 endif()
Lei Zhangef600df2016-09-07 17:26:18 -040050 target_include_directories(${target} PRIVATE
51 ${SPIRV_HEADER_INCLUDE_DIR}
Lei Zhang71fac5a2016-08-05 13:46:45 -040052 ${spirv-tools_SOURCE_DIR}
53 ${spirv-tools_SOURCE_DIR}/include
Lei Zhangef600df2016-09-07 17:26:18 -040054 ${spirv-tools_SOURCE_DIR}/test
Andrey Tuganovc804c122017-03-15 17:28:24 -040055 ${spirv-tools_BINARY_DIR}
Lei Zhang71fac5a2016-08-05 13:46:45 -040056 ${gtest_SOURCE_DIR}/include
57 ${gmock_SOURCE_DIR}/include
58 )
Lei Zhangef600df2016-09-07 17:26:18 -040059 target_link_libraries(${target} PRIVATE ${ARG_LIBS})
60 target_link_libraries(${target} PRIVATE gmock_main)
61 add_test(NAME spirv-tools-${target} COMMAND ${target})
Lei Zhang5c3c0542017-04-05 17:32:39 -040062 set_property(TARGET ${target} PROPERTY FOLDER "SPIRV-Tools tests")
Lei Zhang71fac5a2016-08-05 13:46:45 -040063 endif()
64endfunction()
65
66set(TEST_SOURCES
Lei Zhang4f57e142016-09-22 11:05:30 -040067 test_fixture.h
68 unit_spirv.h
Lei Zhang71fac5a2016-08-05 13:46:45 -040069
Lei Zhang4f57e142016-09-22 11:05:30 -040070 assembly_context_test.cpp
71 assembly_format_test.cpp
72 binary_destroy_test.cpp
73 binary_endianness_test.cpp
74 binary_header_get_test.cpp
75 binary_parse_test.cpp
David Neto37422e92016-12-19 13:26:42 -050076 binary_strnlen_s_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040077 binary_to_text_test.cpp
78 binary_to_text.literal_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040079 comment_test.cpp
Andrey Tuganovc804c122017-03-15 17:28:24 -040080 enum_string_mapping_test.cpp
Andrey Tuganov1fb8c372017-03-09 18:24:35 -050081 enum_set_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040082 ext_inst.glsl_test.cpp
83 ext_inst.opencl_test.cpp
84 fix_word_test.cpp
85 generator_magic_number_test.cpp
86 hex_float_test.cpp
87 immediate_int_test.cpp
88 libspirv_macros_test.cpp
89 named_id_test.cpp
90 name_mapper_test.cpp
91 opcode_make_test.cpp
92 opcode_require_capabilities_test.cpp
93 opcode_split_test.cpp
94 opcode_table_get_test.cpp
95 operand_capabilities_test.cpp
96 operand_test.cpp
97 operand_pattern_test.cpp
98 software_version_test.cpp
99 target_env_test.cpp
100 text_advance_test.cpp
101 text_destroy_test.cpp
102 text_literal_test.cpp
103 text_start_new_inst_test.cpp
104 text_to_binary.annotation_test.cpp
105 text_to_binary.barrier_test.cpp
106 text_to_binary.constant_test.cpp
107 text_to_binary.control_flow_test.cpp
108 text_to_binary_test.cpp
109 text_to_binary.debug_test.cpp
110 text_to_binary.device_side_enqueue_test.cpp
111 text_to_binary.extension_test.cpp
112 text_to_binary.function_test.cpp
113 text_to_binary.group_test.cpp
114 text_to_binary.image_test.cpp
115 text_to_binary.literal_test.cpp
116 text_to_binary.memory_test.cpp
117 text_to_binary.misc_test.cpp
118 text_to_binary.mode_setting_test.cpp
119 text_to_binary.pipe_storage_test.cpp
120 text_to_binary.type_declaration_test.cpp
121 text_to_binary.subgroup_dispatch_test.cpp
122 text_word_get_test.cpp
123
124 unit_spirv.cpp
Lei Zhang71fac5a2016-08-05 13:46:45 -0400125)
Lei Zhanga35919c2016-09-08 17:26:53 -0400126
Lei Zhang71fac5a2016-08-05 13:46:45 -0400127add_spvtools_unittest(
Lei Zhangef600df2016-09-07 17:26:18 -0400128 TARGET spirv_unit_tests
Lei Zhang71fac5a2016-08-05 13:46:45 -0400129 SRCS ${TEST_SOURCES}
130 LIBS ${SPIRV_TOOLS})
131
132add_spvtools_unittest(
Lei Zhanga35919c2016-09-08 17:26:53 -0400133 TARGET diagnostic
Lei Zhang4f57e142016-09-22 11:05:30 -0400134 SRCS diagnostic_test.cpp
Lei Zhanga35919c2016-09-08 17:26:53 -0400135 LIBS ${SPIRV_TOOLS})
136
137add_spvtools_unittest(
Lei Zhang755f97f2016-09-02 18:06:18 -0400138 TARGET c_interface
Lei Zhang4f57e142016-09-22 11:05:30 -0400139 SRCS c_interface_test.cpp
Lei Zhang755f97f2016-09-02 18:06:18 -0400140 LIBS ${SPIRV_TOOLS})
141
142add_spvtools_unittest(
Lei Zhang71fac5a2016-08-05 13:46:45 -0400143 TARGET cpp_interface
Lei Zhang4f57e142016-09-22 11:05:30 -0400144 SRCS cpp_interface_test.cpp
145 LIBS SPIRV-Tools-opt)
Lei Zhang71fac5a2016-08-05 13:46:45 -0400146
qining1773b952016-09-01 14:27:04 -0400147add_spvtools_unittest(
148 TARGET parse_number
Lei Zhang4f57e142016-09-22 11:05:30 -0400149 SRCS parse_number_test.cpp
qining1773b952016-09-01 14:27:04 -0400150 LIBS ${SPIRV_TOOLS})
151
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400152add_spvtools_unittest(
Andrey Tuganovb0116332017-03-10 15:58:15 -0500153 TARGET string_utils
154 SRCS string_utils_test.cpp
155 LIBS ${SPIRV_TOOLS})
156
157add_spvtools_unittest(
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400158 TARGET log
Lei Zhang4f57e142016-09-22 11:05:30 -0400159 SRCS log_test.cpp
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400160 LIBS ${SPIRV_TOOLS})
161
Andrey Tuganovb173d1c2017-04-11 19:46:15 -0400162add_spvtools_unittest(
163 TARGET preserve_numeric_ids
164 SRCS preserve_numeric_ids_test.cpp
165 LIBS ${SPIRV_TOOLS})
166
Andrey Tuganov3eb716c2017-04-24 15:17:33 -0400167add_spvtools_unittest(
168 TARGET bit_stream
169 SRCS bit_stream.cpp
170 LIBS ${SPIRV_TOOLS})
171
Andrey Tuganov40a28292017-05-25 11:21:12 -0400172add_spvtools_unittest(
173 TARGET huffman_codec
174 SRCS huffman_codec.cpp
175 LIBS ${SPIRV_TOOLS})
176
Andrey Tuganov8d3882a2017-06-12 12:01:39 -0400177add_spvtools_unittest(
178 TARGET move_to_front
179 SRCS move_to_front_test.cpp
180 LIBS ${SPIRV_TOOLS})
181
Andrey Tuganov73e8dac2017-05-31 13:07:51 -0400182add_subdirectory(comp)
Lei Zhang71fac5a2016-08-05 13:46:45 -0400183add_subdirectory(opt)
Andrey Tuganov4f216402017-04-06 16:55:26 -0400184add_subdirectory(stats)
Andrey Tuganov73e8dac2017-05-31 13:07:51 -0400185add_subdirectory(val)