2017-12-21 00:45:38 +01:00
|
|
|
#
|
2021-05-16 20:51:16 +02:00
|
|
|
# Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
#
|
2018-09-18 09:11:08 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
set(IGDRCL_SRCS_tests_helpers
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
2021-05-13 19:46:01 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/api_specific_config_ocl_tests.cpp
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/base_object_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cl_helper_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmd_buffer_validator.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmd_buffer_validator_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/dispatch_info_builder_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/dispatch_info_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/get_info_status_mapper_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/gtest_helpers.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_tests.h
|
2020-08-27 08:55:09 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/heap_assigner_ocl_tests.cpp
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_default_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_filename_helper.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kmd_notify_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/memory_management_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/memory_properties_helpers_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mipmap_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/per_thread_data_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/queue_helpers_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/raii_hw_helper.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sampler_helpers_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/task_information_tests.cpp
|
2021-06-01 19:35:06 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/timestamp_packet_1_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/timestamp_packet_2_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/timestamp_packet_tests.h
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/transfer_properties_tests.cpp
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ult_limits.h
|
2021-05-13 13:27:50 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/uint16_sse4_tests.cpp
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/validator_tests.cpp
|
2021-01-21 13:10:13 +01:00
|
|
|
${NEO_SHARED_TEST_DIRECTORY}/common/helpers/aligned_memory_tests.cpp
|
|
|
|
|
${NEO_SHARED_TEST_DIRECTORY}/common/helpers/debug_manager_state_restore.h
|
2021-04-13 14:00:07 +02:00
|
|
|
${NEO_SHARED_TEST_DIRECTORY}/common/helpers/unit_test_helper.h
|
|
|
|
|
${NEO_SHARED_TEST_DIRECTORY}/common/helpers/unit_test_helper.inl
|
2017-12-21 00:45:38 +01:00
|
|
|
)
|
2018-04-10 10:26:59 +02:00
|
|
|
|
2019-10-07 13:20:48 +02:00
|
|
|
get_property(NEO_CORE_PREAMBLE_TESTS GLOBAL PROPERTY NEO_CORE_PREAMBLE_TESTS)
|
|
|
|
|
|
|
|
|
|
list(APPEND IGDRCL_SRCS_tests_helpers
|
2020-08-19 12:18:18 +02:00
|
|
|
${NEO_CORE_PREAMBLE_TESTS}
|
2019-10-07 13:20:48 +02:00
|
|
|
)
|
|
|
|
|
|
2019-06-16 12:45:28 +02:00
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_helpers})
|
2019-01-30 13:11:30 +01:00
|
|
|
add_subdirectories()
|