Skip to content

Commit

Permalink
Renamed files
Browse files Browse the repository at this point in the history
  • Loading branch information
ishariko committed Jul 15, 2021
1 parent e1fa012 commit c8fe7e4
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions tests/lib/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# SPDX-License-Identifier: Apache-2.0
#

set (TARGET_NAME "shared_tests_lib")
set (TARGET_NAME "tests_shared_lib")

file (GLOB SRC *.cpp)
add_library(${TARGET_NAME} STATIC ${SRC})

target_include_directories(${TARGET_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

#set(OpenVINO_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../")
set(OpenVINO_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../")

# Search OpenVINO Inference Engine via InferenceEngine_DIR
find_package(IEDevScripts REQUIRED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
//

#include "common.h"
#include "common_utils.h"

#include <inference_engine.hpp>

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/stress_tests/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ add_library(${TARGET_NAME} STATIC ${SRC} ${HDR})

target_include_directories(${TARGET_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

add_subdirectory("${OpenVINO_SOURCE_DIR}/tests/lib" common)
add_subdirectory("${OpenVINO_SOURCE_DIR}/tests/lib" tests_shared_lib)
target_link_libraries(${TARGET_NAME}
PUBLIC
IE::gtest
IE::pugixml
common
tests_shared_lib
PRIVATE
IE::gtest_main)
2 changes: 1 addition & 1 deletion tests/stress_tests/common/ie_pipelines/pipelines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "pipelines.h"
#include "../utils.h"
#include "common.h"
#include "common_utils.h"

#include <iostream>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion tests/stress_tests/memcheck_tests/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "tests_utils.h"
#include "../common/tests_utils.h"
#include "common.h"
#include "common_utils.h"
#include "../common/managers/thread_manager.h"
#include "tests_pipelines/tests_pipelines.h"

Expand Down
2 changes: 1 addition & 1 deletion tests/stress_tests/memleaks_tests/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

#include "../common/tests_utils.h"
#include "common.h"
#include "common_utils.h"
#include "../common/managers/thread_manager.h"
#include "tests_pipelines/tests_pipelines.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

#include "tests_pipelines.h"
#include "common.h"
#include "common_utils.h"

#include <string>

Expand Down
2 changes: 1 addition & 1 deletion tests/time_tests/src/timetests/timetest_infer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <inference_engine.hpp>
#include <iostream>

#include "common.h"
#include "common_utils.h"
#include "timetests_helper/timer.h"
#include "timetests_helper/utils.h"
using namespace InferenceEngine;
Expand Down
2 changes: 1 addition & 1 deletion tests/time_tests/src/timetests/timetest_infer_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <inference_engine.hpp>
#include <iostream>

#include "common.h"
#include "common_utils.h"
#include "timetests_helper/timer.h"
#include "timetests_helper/utils.h"
using namespace InferenceEngine;
Expand Down

0 comments on commit c8fe7e4

Please sign in to comment.