blob: f9794037ab3a4730dce38040273109088127c2b8 [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()
Lei Zhangb93c0662017-12-05 10:55:00 -050026 message(STATUS "Did not find googletest, tests will not be built. "
Lei Zhangeb6fc512016-03-16 22:43:31 -040027 "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)
David Neto76555bd2017-11-08 00:23:42 -050042 # Effcee and RE2 headers exhibit shadowing.
43 target_compile_options(${target} PRIVATE -Wno-shadow)
Lei Zhang71fac5a2016-08-05 13:46:45 -040044 endif()
Lei Zhang190b0d32016-08-07 22:49:00 -040045 if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
Lei Zhang71fac5a2016-08-05 13:46:45 -040046 # Disable C4503 "decorated name length exceeded" warning,
47 # triggered by some heavily templated types.
48 # We don't care much about that in test code.
49 # Important to do since we have warnings-as-errors.
Lei Zhangef600df2016-09-07 17:26:18 -040050 target_compile_options(${target} PRIVATE /wd4503)
Lei Zhang71fac5a2016-08-05 13:46:45 -040051 endif()
Lei Zhangef600df2016-09-07 17:26:18 -040052 target_include_directories(${target} PRIVATE
53 ${SPIRV_HEADER_INCLUDE_DIR}
Lei Zhang71fac5a2016-08-05 13:46:45 -040054 ${spirv-tools_SOURCE_DIR}
55 ${spirv-tools_SOURCE_DIR}/include
Lei Zhangef600df2016-09-07 17:26:18 -040056 ${spirv-tools_SOURCE_DIR}/test
Andrey Tuganovc804c122017-03-15 17:28:24 -040057 ${spirv-tools_BINARY_DIR}
Lei Zhang71fac5a2016-08-05 13:46:45 -040058 ${gtest_SOURCE_DIR}/include
59 ${gmock_SOURCE_DIR}/include
60 )
David Neto76555bd2017-11-08 00:23:42 -050061 if (TARGET effcee)
62 # If using Effcee for testing, then add its include directory.
63 target_include_directories(${target} PRIVATE ${effcee_SOURCE_DIR})
64 endif()
Lei Zhangef600df2016-09-07 17:26:18 -040065 target_link_libraries(${target} PRIVATE ${ARG_LIBS})
David Neto76555bd2017-11-08 00:23:42 -050066 if (TARGET effcee)
67 target_link_libraries(${target} PRIVATE effcee)
68 endif()
Lei Zhangef600df2016-09-07 17:26:18 -040069 target_link_libraries(${target} PRIVATE gmock_main)
70 add_test(NAME spirv-tools-${target} COMMAND ${target})
Lei Zhang5c3c0542017-04-05 17:32:39 -040071 set_property(TARGET ${target} PROPERTY FOLDER "SPIRV-Tools tests")
Lei Zhang71fac5a2016-08-05 13:46:45 -040072 endif()
73endfunction()
74
75set(TEST_SOURCES
Lei Zhang4f57e142016-09-22 11:05:30 -040076 test_fixture.h
77 unit_spirv.h
Lei Zhang71fac5a2016-08-05 13:46:45 -040078
Lei Zhang4f57e142016-09-22 11:05:30 -040079 assembly_context_test.cpp
80 assembly_format_test.cpp
81 binary_destroy_test.cpp
82 binary_endianness_test.cpp
83 binary_header_get_test.cpp
84 binary_parse_test.cpp
David Neto37422e92016-12-19 13:26:42 -050085 binary_strnlen_s_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040086 binary_to_text_test.cpp
87 binary_to_text.literal_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040088 comment_test.cpp
Andrey Tuganovc804c122017-03-15 17:28:24 -040089 enum_string_mapping_test.cpp
Andrey Tuganov1fb8c372017-03-09 18:24:35 -050090 enum_set_test.cpp
Lei Zhang4f57e142016-09-22 11:05:30 -040091 ext_inst.glsl_test.cpp
92 ext_inst.opencl_test.cpp
93 fix_word_test.cpp
94 generator_magic_number_test.cpp
95 hex_float_test.cpp
96 immediate_int_test.cpp
97 libspirv_macros_test.cpp
98 named_id_test.cpp
99 name_mapper_test.cpp
100 opcode_make_test.cpp
101 opcode_require_capabilities_test.cpp
102 opcode_split_test.cpp
103 opcode_table_get_test.cpp
104 operand_capabilities_test.cpp
105 operand_test.cpp
106 operand_pattern_test.cpp
107 software_version_test.cpp
108 target_env_test.cpp
109 text_advance_test.cpp
110 text_destroy_test.cpp
111 text_literal_test.cpp
112 text_start_new_inst_test.cpp
113 text_to_binary.annotation_test.cpp
114 text_to_binary.barrier_test.cpp
115 text_to_binary.constant_test.cpp
116 text_to_binary.control_flow_test.cpp
117 text_to_binary_test.cpp
118 text_to_binary.debug_test.cpp
119 text_to_binary.device_side_enqueue_test.cpp
120 text_to_binary.extension_test.cpp
121 text_to_binary.function_test.cpp
122 text_to_binary.group_test.cpp
123 text_to_binary.image_test.cpp
124 text_to_binary.literal_test.cpp
125 text_to_binary.memory_test.cpp
126 text_to_binary.misc_test.cpp
127 text_to_binary.mode_setting_test.cpp
128 text_to_binary.pipe_storage_test.cpp
129 text_to_binary.type_declaration_test.cpp
130 text_to_binary.subgroup_dispatch_test.cpp
131 text_word_get_test.cpp
132
133 unit_spirv.cpp
Lei Zhang71fac5a2016-08-05 13:46:45 -0400134)
Lei Zhanga35919c2016-09-08 17:26:53 -0400135
Lei Zhang71fac5a2016-08-05 13:46:45 -0400136add_spvtools_unittest(
Lei Zhangef600df2016-09-07 17:26:18 -0400137 TARGET spirv_unit_tests
Lei Zhang71fac5a2016-08-05 13:46:45 -0400138 SRCS ${TEST_SOURCES}
139 LIBS ${SPIRV_TOOLS})
140
141add_spvtools_unittest(
Lei Zhanga35919c2016-09-08 17:26:53 -0400142 TARGET diagnostic
Lei Zhang4f57e142016-09-22 11:05:30 -0400143 SRCS diagnostic_test.cpp
Lei Zhanga35919c2016-09-08 17:26:53 -0400144 LIBS ${SPIRV_TOOLS})
145
146add_spvtools_unittest(
Lei Zhang755f97f2016-09-02 18:06:18 -0400147 TARGET c_interface
Lei Zhang4f57e142016-09-22 11:05:30 -0400148 SRCS c_interface_test.cpp
Lei Zhang755f97f2016-09-02 18:06:18 -0400149 LIBS ${SPIRV_TOOLS})
150
151add_spvtools_unittest(
Lei Zhang71fac5a2016-08-05 13:46:45 -0400152 TARGET cpp_interface
Lei Zhang4f57e142016-09-22 11:05:30 -0400153 SRCS cpp_interface_test.cpp
154 LIBS SPIRV-Tools-opt)
Lei Zhang71fac5a2016-08-05 13:46:45 -0400155
qining1773b952016-09-01 14:27:04 -0400156add_spvtools_unittest(
157 TARGET parse_number
Lei Zhang4f57e142016-09-22 11:05:30 -0400158 SRCS parse_number_test.cpp
qining1773b952016-09-01 14:27:04 -0400159 LIBS ${SPIRV_TOOLS})
160
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400161add_spvtools_unittest(
Andrey Tuganovb0116332017-03-10 15:58:15 -0500162 TARGET string_utils
163 SRCS string_utils_test.cpp
164 LIBS ${SPIRV_TOOLS})
165
166add_spvtools_unittest(
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400167 TARGET log
Lei Zhang4f57e142016-09-22 11:05:30 -0400168 SRCS log_test.cpp
Lei Zhangbfd7cd62016-09-08 11:43:48 -0400169 LIBS ${SPIRV_TOOLS})
170
Andrey Tuganovb173d1c2017-04-11 19:46:15 -0400171add_spvtools_unittest(
172 TARGET preserve_numeric_ids
173 SRCS preserve_numeric_ids_test.cpp
174 LIBS ${SPIRV_TOOLS})
175
Andrey Tuganov3eb716c2017-04-24 15:17:33 -0400176add_spvtools_unittest(
177 TARGET bit_stream
178 SRCS bit_stream.cpp
179 LIBS ${SPIRV_TOOLS})
180
Andrey Tuganov40a28292017-05-25 11:21:12 -0400181add_spvtools_unittest(
182 TARGET huffman_codec
183 SRCS huffman_codec.cpp
184 LIBS ${SPIRV_TOOLS})
185
Andrey Tuganov8d3882a2017-06-12 12:01:39 -0400186add_spvtools_unittest(
187 TARGET move_to_front
188 SRCS move_to_front_test.cpp
189 LIBS ${SPIRV_TOOLS})
190
Andrey Tuganov73e8dac2017-05-31 13:07:51 -0400191add_subdirectory(comp)
Pierre Moreau86627f72017-07-13 02:16:51 +0200192add_subdirectory(link)
Lei Zhang71fac5a2016-08-05 13:46:45 -0400193add_subdirectory(opt)
Andrey Tuganov4f216402017-04-06 16:55:26 -0400194add_subdirectory(stats)
Steven Perron720beb12017-10-10 09:47:01 -0400195add_subdirectory(util)
Andrey Tuganov73e8dac2017-05-31 13:07:51 -0400196add_subdirectory(val)