gtest最初のテスト・インスタンスの作成エラーとその解決プロセス

2782 ワード

gtestをインストールしたら、最初のテストケースtestを作成します.main.cpp
#include <iostream>
#include <gtest/gtest.h>

using namespace std;

int Foo(int a,int b)
{
 return a+b;
}

TEST(FooTest, ZeroEqual)
{
 ASSERT_EQ(0,0);
}

TEST(FooTest, HandleNoneZeroInput)
{
    EXPECT_EQ(12,Foo(4, 10));
    EXPECT_EQ(6, Foo(30, 18));
}


int main(int argc, char* argv[])
{
    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}

gtestの説明に従ってMakeFileファイルは
TARGET=test_main

all:
    gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
    g++  $(gtest-config --cppflags --cxxflags) -o $(TARGET).o -c test_main.cpp
    g++  $(gtest-config --ldflags --libs) -o $(TARGET) $(TARGET).o
clean:
    rm -rf *.o $(TARGET)

しかしコンパイル中にエラーが発生しました
cxy-/home/chenxueyou/gtest$ make
gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
g++   -o test_main.o -c test_main.cpp
g++  -o test_main test_main.o
test_main.o: In function `FooTest_ZeroEqual_Test::TestBody()':
test_main.cpp:(.text+0x9e): undefined reference to `testing::internal::AssertHelper::AssertHelper(testing::TestPartResult::Type, char const*, int, char const*)'
...

エラーメッセージの一部を省略してundefined referenceが見られ、コンパイルは通過したが、リンクに失敗し、対応するライブラリが見つからなかったと推測できる.実際の実行時に印刷されたコマンドは
   g++  -o test_main.o -c test_main.cpp
    g++  -o test_main test_main.o

明らかに、gtestのヘッダファイルは導入されず、gtest対応のライブラリもロードされていない.実行コマンド>echo $(gtest-config --cppflags --cxxflags)およびecho $(gtest-config --ldflags --libs)は、gtest構成のヘッダファイルパスおよびライブラリファイルパスを得ることができる.
cxy-/home/chenxueyou/gtest$ echo $(gtest-config --cppflags --cxxflags)
-I/usr/include -pthread
cxy-/home/chenxueyou/gtest$ echo $(gtest-config --ldflags --libs)
-L/usr/lib64 -lgtest -pthread

私たちのMakefileで実行した場合、上記の2つのコマンドの結果は空です.だからMakefileを修正して、手動でヘッダファイルのパスとライブラリファイルのパスを指定して、Makefileは
TARGET=test_main

all:
    gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
    g++  -I/usr/include -pthread -o $(TARGET).o -c test_main.cpp
    g++ -L/usr/lib64 -lgtest -pthread -o $(TARGET) $(TARGET).o
clean:
    rm -rf *.o $(TARGET)

これで、私たちの最初のgtestテストファイルはコンパイルに合格しました.

まとめ


1.Makefileが実際に実行するコマンドは、予想したコマンドとは異なる場合がありますので、よく確認してください.2.gtestはヘッダファイルとライブラリの方式で工事を導入し、そのヘッダファイルとライブラリファイルの位置を指定する.gtest-configコマンドは、対応するパスを見つけるのに役立ちます.
私のウェブサイト---蝶の突然のブログ園---人の無名のコラムへようこそ.本文を読む過程で何か問題があれば、作者に連絡して、転載して出典を明記してください.