I installed Jenkins on a CentOS vm. Now I want to run unittests (google test) with mocks (google mock). I tried installing the frameworks like described here. (On my lubuntu machine everything runs without a problem using these steps)
When I try to build:
g++ -O2 -pthread -Werror -Wall -o unitTest DriveTest.cpp Drive.cpp PWM.cpp -lgtest -lgtest_main -lgmock
I get the following errors:
make unitTest
g++ -O2 -std=c++0x -pthread -Werror -Wall -o unitTest DriveTest.cpp Drive.cpp PWM.cpp -lgtest -lgtest_main -lgmock
In file included from /usr/include/gmock/gmock-spec-builders.h:75,
from /usr/include/gmock/gmock-generated-function-mockers.h:43,
from /usr/include/gmock/gmock.h:61,
from PWMMock.h:4,
from DriveTest.cpp:1:
/usr/include/gmock/gmock-matchers.h:1485: sorry, unimplemented: cannot expand ‘Tail ...’ into a fixed-length argument list
/usr/include/gmock/gmock-matchers.h:1486: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1486: error: ‘ListType’ in class ‘int’ does not name a type
/usr/include/gmock/gmock-matchers.h:1486: error: template argument 2 is invalid
/usr/include/gmock/gmock-matchers.h:1486: error: expected ‘::’ before ‘ListType’
/usr/include/gmock/gmock-matchers.h: In static member function ‘static int testing::internal::MatcherList<kSize, Head,
Tail>::BuildList(const Head&, const Tail& ...)’:
/usr/include/gmock/gmock-matchers.h:1493: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1493: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1493: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1493: error: ‘BuildList’ is not a member of ‘int’
/usr/include/gmock/gmock-matchers.h: In static member function ‘static testing::Matcher<T> testing::internal::MatcherList<kSize,
Head, Tail>::CreateMatcher(const int&)’:
/usr/include/gmock/gmock-matchers.h:1503: error: request for member ‘first’ in ‘matchers’, which is of non-class type ‘const int’
/usr/include/gmock/gmock-matchers.h:1504: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1504: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1504: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1504: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1504: error: ‘int’ is not a class type
/usr/include/gmock/gmock-matchers.h:1504: error: ‘CreateMatcher’ is not a member of ‘int’
...
How can I fix this?