From: Cheoleun Moon Date: Tue, 11 May 2021 05:19:44 +0000 (+0900) Subject: Use gtest instead of gmock X-Git-Tag: submit/tizen/20210510.064912^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbcee07bc0a38f8887ea40b36c21878baf280cd1;p=platform%2Fcore%2Fapi%2Fvine.git Use gtest instead of gmock Change-Id: Idbf0ae4e98757a9f042ceef9a040ab8363942042 Signed-off-by: Cheoleun Moon --- diff --git a/packaging/capi-network-vine.spec b/packaging/capi-network-vine.spec index 9650952..9592011 100755 --- a/packaging/capi-network-vine.spec +++ b/packaging/capi-network-vine.spec @@ -24,7 +24,7 @@ BuildRequires: pkgconfig(capi-system-info) BuildRequires: pkgconfig(dlog) %endif -BuildRequires: pkgconfig(gmock) +BuildRequires: pkgconfig(gtest) %if 0%{?gcov:1} BuildRequires: lcov diff --git a/tests/unittest/CMakeLists.txt b/tests/unittest/CMakeLists.txt index 6bb39db..0ed0eb5 100755 --- a/tests/unittest/CMakeLists.txt +++ b/tests/unittest/CMakeLists.txt @@ -34,7 +34,7 @@ IF(ANDROID) TARGET_INCLUDE_DIRECTORIES(gtest PUBLIC ${GOOGLETEST_ROOT}/include) SET(GTEST gtest) ELSE(ANDROID) - SET(GTEST gmock) + SET(GTEST gtest) ENDIF(ANDROID) FILE(GLOB UNITTEST_SRCS *.cpp mocks/*.cpp ${CMAKE_SOURCE_DIR}/src/*.cpp)