2016-09-07 21:43:15 +00:00
|
|
|
# Copyright (c) 2016 The Khronos Group Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
set(VAL_TEST_COMMON_SRCS
|
2016-09-22 15:05:30 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../test_fixture.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../unit_spirv.h
|
2019-01-29 15:27:11 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/val_code_generator.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/val_code_generator.h
|
2016-11-08 18:11:07 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/val_fixtures.h
|
2016-09-07 21:43:15 +00:00
|
|
|
)
|
|
|
|
|
2018-06-11 22:53:45 +00:00
|
|
|
add_spvtools_unittest(TARGET val_abcde
|
|
|
|
SRCS
|
|
|
|
val_adjacency_test.cpp
|
|
|
|
val_arithmetics_test.cpp
|
|
|
|
val_atomics_test.cpp
|
|
|
|
val_barriers_test.cpp
|
|
|
|
val_bitwise_test.cpp
|
|
|
|
val_builtins_test.cpp
|
|
|
|
val_cfg_test.cpp
|
|
|
|
val_composites_test.cpp
|
2019-01-03 19:28:00 +00:00
|
|
|
val_constants_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_conversion_test.cpp
|
|
|
|
val_data_test.cpp
|
|
|
|
val_decoration_test.cpp
|
|
|
|
val_derivatives_test.cpp
|
2019-09-16 23:13:30 +00:00
|
|
|
val_entry_point.cpp
|
2018-06-19 13:54:33 +00:00
|
|
|
val_explicit_reserved_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_extensions_test.cpp
|
|
|
|
val_ext_inst_test.cpp
|
2017-12-13 16:56:09 +00:00
|
|
|
${VAL_TEST_COMMON_SRCS}
|
|
|
|
LIBS ${SPIRV_TOOLS}
|
2018-11-06 14:26:23 +00:00
|
|
|
PCH_FILE pch_test_val
|
2019-09-13 20:48:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
add_spvtools_unittest(TARGET val_capability
|
|
|
|
SRCS
|
|
|
|
val_capability_test.cpp
|
|
|
|
LIBS ${SPIRV_TOOLS}
|
|
|
|
PCH_FILE pch_test_val
|
2017-12-13 16:56:09 +00:00
|
|
|
)
|
|
|
|
|
2016-11-24 20:37:22 +00:00
|
|
|
add_spvtools_unittest(TARGET val_limits
|
2018-06-11 22:53:45 +00:00
|
|
|
SRCS val_limits_test.cpp
|
2016-11-24 20:37:22 +00:00
|
|
|
${VAL_TEST_COMMON_SRCS}
|
|
|
|
LIBS ${SPIRV_TOOLS}
|
2019-01-29 18:29:58 +00:00
|
|
|
PCH_FILE pch_test_val
|
2016-11-24 20:37:22 +00:00
|
|
|
)
|
|
|
|
|
2019-02-06 19:10:40 +00:00
|
|
|
add_spvtools_unittest(TARGET val_fghijklmnop
|
2018-06-11 22:53:45 +00:00
|
|
|
SRCS
|
2019-02-06 19:10:40 +00:00
|
|
|
val_function_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_id_test.cpp
|
|
|
|
val_image_test.cpp
|
2018-05-31 13:07:09 +00:00
|
|
|
val_interfaces_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_layout_test.cpp
|
|
|
|
val_literals_test.cpp
|
|
|
|
val_logicals_test.cpp
|
2018-11-14 20:00:03 +00:00
|
|
|
val_memory_test.cpp
|
2019-07-11 17:05:14 +00:00
|
|
|
val_misc_test.cpp
|
2018-09-28 20:41:56 +00:00
|
|
|
val_modes_test.cpp
|
2019-12-18 23:10:29 +00:00
|
|
|
val_non_semantic_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_non_uniform_test.cpp
|
2019-05-17 12:25:20 +00:00
|
|
|
val_opencl_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_primitives_test.cpp
|
2017-01-11 20:03:53 +00:00
|
|
|
${VAL_TEST_COMMON_SRCS}
|
|
|
|
LIBS ${SPIRV_TOOLS}
|
2018-11-06 14:26:23 +00:00
|
|
|
PCH_FILE pch_test_val
|
2017-01-11 20:03:53 +00:00
|
|
|
)
|
|
|
|
|
2018-06-20 17:29:38 +00:00
|
|
|
add_spvtools_unittest(TARGET val_stuvw
|
2018-06-11 22:53:45 +00:00
|
|
|
SRCS
|
2019-07-11 17:05:14 +00:00
|
|
|
val_small_type_uses_test.cpp
|
2018-06-11 22:53:45 +00:00
|
|
|
val_ssa_test.cpp
|
|
|
|
val_state_test.cpp
|
|
|
|
val_storage_test.cpp
|
|
|
|
val_type_unique_test.cpp
|
|
|
|
val_validation_state_test.cpp
|
|
|
|
val_version_test.cpp
|
2018-06-20 17:29:38 +00:00
|
|
|
val_webgpu_test.cpp
|
2017-01-11 15:51:23 +00:00
|
|
|
${VAL_TEST_COMMON_SRCS}
|
|
|
|
LIBS ${SPIRV_TOOLS}
|
2018-11-06 14:26:23 +00:00
|
|
|
PCH_FILE pch_test_val
|
2017-01-11 15:51:23 +00:00
|
|
|
)
|