From f49eac14e4b5ed27a5a88821a3058e242863ebbc Mon Sep 17 00:00:00 2001 From: Sorin Butnariu Date: Tue, 18 Feb 2025 18:43:28 +0200 Subject: [PATCH] Update cmakelists, install skip_test.xml in build folder --- src/plugins/intel_npu/tests/functional/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/intel_npu/tests/functional/CMakeLists.txt b/src/plugins/intel_npu/tests/functional/CMakeLists.txt index e7a56a223b9b83..03ede93d3bbff0 100644 --- a/src/plugins/intel_npu/tests/functional/CMakeLists.txt +++ b/src/plugins/intel_npu/tests/functional/CMakeLists.txt @@ -14,6 +14,9 @@ set(EXCLUDED_FUNC_TESTS_DIR "") set(OPTIONAL_FUNC_TESTS_INCLUDES "") set(OPTIONAL_FUNC_TESTS_LIBS "") +set(SKIP_CONFIG "skip_tests.xml") +set(SKIP_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/shared_tests_instances/${SKIP_CONFIG}) + list(APPEND OPTIONAL_FUNC_TESTS_INCLUDES "${OpenVINO_SOURCE_DIR}/src/plugins/intel_npu/src/compiler_adapter/include") @@ -66,3 +69,7 @@ install( RUNTIME DESTINATION tests COMPONENT tests EXCLUDE_FROM_ALL) + +install(FILES ${SKIP_CONFIG_PATH} + DESTINATION tests + COMPONENT tests)