diff options
author | Tanzinul Islam <t_17_7@hotmail.com> | 2017-09-06 01:05:24 +0100 |
---|---|---|
committer | Tanzinul Islam <t_17_7@hotmail.com> | 2017-09-06 01:05:24 +0100 |
commit | 78b1ff074799c776f90a77203fcd7adc98e11736 (patch) | |
tree | 21974f2d4f0d4aeaff5a4027df84889a2619ae25 /travis.sh | |
parent | a838de3348add7530431e8d91c8a66cc646f1888 (diff) | |
parent | 857ddeadebe4aa75efcee728651d0947a5a1065a (diff) | |
download | googletest-78b1ff074799c776f90a77203fcd7adc98e11736.tar.gz googletest-78b1ff074799c776f90a77203fcd7adc98e11736.tar.bz2 googletest-78b1ff074799c776f90a77203fcd7adc98e11736.zip |
Merge branch 'master' into fix_death_test_child_mingw_wer_issue1116
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -3,13 +3,12 @@ set -evx env | sort mkdir build || true -mkdir build/$GTEST_TARGET || true -cd build/$GTEST_TARGET +cd build cmake -Dgtest_build_samples=ON \ - -Dgmock_build_samples=ON \ -Dgtest_build_tests=ON \ -Dgmock_build_tests=ON \ -DCMAKE_CXX_FLAGS=$CXX_FLAGS \ - ../../$GTEST_TARGET + -DCMAKE_BUILD_TYPE=$BUILD_TYPE \ + .. make CTEST_OUTPUT_ON_FAILURE=1 make test |