其他分享
首页 > 其他分享> > c – 用conan安装的gtest:对`testing :: internal :: GetBoolAssertionFailureMessage的未定义引用

c – 用conan安装的gtest:对`testing :: internal :: GetBoolAssertionFailureMessage的未定义引用

作者:互联网

我使用cmake来构建我的项目,使用conan来安装Google Test作为依赖项:

conanfile.txt

[requires]
gtest/1.7.0@lasote/stable

[generators]
cmake

[imports]
bin, *.dll -> ./build/bin
lib, *.dylib* -> ./build/bin

的CMakeLists.txt

PROJECT(MyTestingExample)
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)

INCLUDE(conanbuildinfo.cmake)
CONAN_BASIC_SETUP()

ADD_EXECUTABLE(my_test test/my_test.cpp)
TARGET_LINK_LIBRARIES(my_test ${CONAN_LIBS})

测试/ my_test.cpp

#include <gtest/gtest.h>
#include <string>

TEST(MyTest, foobar) {
    std::string foo("foobar");
    std::string bar("foobar");
    ASSERT_STREQ(foo.c_str(), bar.c_str()); // working
    EXPECT_FALSE(false); // error
}

建立

$conan install --build=missing
$mkdir build && cd build
$cmake .. && cmake --build .

我可以使用ASSERT_STREQ,但是如果我使用EXPECT_FALSE,则会出现意外错误:

my_test.cpp:(.text+0x1e1): undefined reference to `testing::internal::GetBoolAssertionFailureMessage[abi:cxx11](testing::AssertionResult const&, char const*, char const*, char const*)'
collect2: error: ld returned 1 exit status

我的配置有什么问题?

解决方法:

问题是您使用默认设置(构建类型Release)安装conan依赖项:

$conan install --build=missing
# equivalent to
$conan install -s build_type=Release ... --build=missing

您可以在conan.conf文件中看到默认设置

然后,您在nix系统中使用cmake,其默认构建类型是Debug,这是一个单一的conf环境(与多配置调试/发布环境相反,与Visual Studio相反),所以当你这样做时:

$cmake .. && cmake --build .
# equivalent to
$cmake .. -DCMAKE_BUILD_TYPE=Debug && cmake --build .

调试/发布版本的不兼容性导致了未解决的问题.所以解决方案是使用与您安装的依赖项匹配的相同构建类型:

$cmake .. -DCMAKE_BUILD_TYPE=Release && cmake --build .

如果使用像Visual Studio这样的多配置环境,正确的方法是:

$cmake .. && cmake --build . --config Release

标签:c,unit-testing,googletest,conan
来源: https://codeday.me/bug/20191009/1876886.html