"googlemock/src/gmock-internal-utils.cc" did not exist on "bbd6e105e786dd6d4e1fdd6b1467f969121bcca3"
Commit df688319 authored by Billy Donahue's avatar Billy Donahue
Browse files

travis googlemock as well

parent 12a8c191
...@@ -29,6 +29,7 @@ addons: ...@@ -29,6 +29,7 @@ addons:
- valgrind - valgrind
os: os:
- linux - linux
- osx
language: cpp language: cpp
compiler: compiler:
- gcc - gcc
......
...@@ -18,14 +18,17 @@ set -vex ...@@ -18,14 +18,17 @@ set -vex
env | sort env | sort
mkdir build mkdir build
cd build
cmake ../googletest
make
# Python is not available in Travis for osx. mkdir build/googletest
# https://github.com/travis-ci/travis-ci/issues/2320 ( cd build/googletest && cmake ../../googletest )
if [ "$TRAVIS_OS_NAME" != "osx" ] if [ "$TRAVIS_OS_NAME" != "osx" ]
then then
make ( cd build/googletest && make )
# valgrind --error-exitcode=42 --leak-check=full ./src/test_lib_json/jsoncpp_test fi
mkdir build/googlemock
( cd build/googlemock && cmake ../../googlemock )
if [ "$TRAVIS_OS_NAME" != "osx" ]
then
( cd build/googlemock && make )
fi fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment