3

我正在尝试使用 Maven 进行 Google 测试。所以,我使用这个链接安装了它。然后我为测试创建dummyTest.cpp并将其添加到 pom.xml 以执行测试。当我这样做mvn clean install时,我收到以下错误 -

[INFO] 1 total files to be compiled.
[INFO] 1 total files to be compiled.
[INFO] Found 1 processors available
[INFO] Found 1 processors available
[INFO]
Starting Core 0 with 1 source files...
[INFO]
Starting Core 0 with 1 source files...
[INFO] Linking...
[INFO] Linking...
[INFO] Starting link {4.8.3 -L/usr/lib -Bdynamic -lgtest -L/usr/lib -Bdynamic -lgtest_main -Bdynamic -lpthread -fexceptions -lstdc++}
[INFO] Starting link {4.8.3 -L/usr/lib -Bdynamic -lgtest -L/usr/lib -Bdynamic -lgtest_main -Bdynamic -lpthread -fexceptions -lstdc++}
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libpthread.so when searching for -lpthread
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libpthread.so when searching for -lpthread
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
[ERROR] /home/sshakya/MavenC/Recent_Backup/COE/testlibrary/target/test-nar/obj/amd64-Linux-gpp/dummyTest.o: In function `__static_initialization_and_destruction_0(int, int)':
[ERROR] dummyTest.cpp:(.text+0x1f2): undefined reference to `testing::internal::MakeAndRegisterTestInfo(char const*, char const*, char const*, char const*, testing::internal::CodeLocation, void const*, void (*)(), void (*)(), testing::internal::TestFactoryBase*)'
[ERROR] collect2: error: ld returned 1 exit status
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE

和我正在使用dummyTest.cpp的如下:-pom fileproject structure

//
//      File:   dummyTest.cpp
//
#include "gtest/gtest.h"
TEST(dummyTest, AlwaysTrueTest) {
  EXPECT_EQ(1, 1);
}

//
//      File:   pom.xml
//
<project xmlns="http://maven.apache.org/POM/4.0.0"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.coe</groupId>
<artifactId>testlibrary</artifactId>
<packaging>nar</packaging>
<version>1.0-SNAPSHOT</version>

<properties>
    <skipTests>false</skipTests>
    <skipDeploy>false</skipDeploy> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>   

<build>
    <defaultGoal>install</defaultGoal>
    <plugins>          
        <plugin>
            <groupId>com.github.maven-nar</groupId>
            <artifactId>nar-maven-plugin</artifactId>
            <version>3.2.3</version>
            <extensions>true</extensions>
            <configuration>
                <layout>NarLayout20</layout>
                <libraries>
                   <library>
                        <type>executable</type>
                        <run>true</run>
                    </library>
                </libraries>
                <linker>
                    <name>g++</name>
                    <sysLibs>
                        <sysLib>
                            <name>pthread</name>
                        </sysLib>
                    </sysLibs>
                     <libs>
                          <lib>
                            <name>gtest</name>
                            <type>shared</type>
                            <directory>/usr/lib/</directory>
                          </lib>
                          <lib>
                            <name>gtest_main</name>
                            <type>shared</type>
                            <directory>/usr/lib/</directory>
                          </lib>
                    </libs>
                </linker>
                <tests>
                    <test>
                      <name>dummyTest</name>
                      <link>shared</link>
                    </test>
              </tests>
            </configuration>
        </plugin>
    </plugins>
</build>

在此处输入图像描述

似乎我从其他博客文章和stackoverflow问答中以正确的方式阅读,但我无法弄清楚是什么导致了这个问题。任何帮助或对正确方向的任何提示将不胜感激。谢谢

4

1 回答 1

0

请检查搜索路径中是否存在相互矛盾的 gtest 版本:编译过程中是否包含与您链接到的库 libgtest{,_main} 相同的 gtest.h?

于 2017-11-28T14:03:34.813 回答