Move TF frontend tests (#11038)

This commit is contained in:
Oleg Pipikin 2022-03-25 08:28:07 +03:00 committed by GitHub
parent 5b18677f1b
commit aa0ab0e995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 5 additions and 4 deletions

View File

@ -9,10 +9,6 @@ if (ENABLE_OV_ONNX_FRONTEND)
add_subdirectory(onnx)
endif()
if (ENABLE_OV_TF_FRONTEND)
add_subdirectory(tensorflow)
endif()
set(SRC ${CMAKE_CURRENT_SOURCE_DIR}/mock_frontend.cpp)
set(MOCK1_FE_NAME openvino_mock1_frontend)
add_library(${MOCK1_FE_NAME} SHARED EXCLUDE_FROM_ALL ${SRC})

View File

@ -26,3 +26,8 @@ install(FILES $<TARGET_FILE:openvino_tensorflow_frontend>
COMPONENT tests
RENAME ${output_name}
EXCLUDE_FROM_ALL)
if(ENABLE_TESTS)
add_subdirectory(tests)
endif()