blob: 1b23a3d4b9ae113fedafd574c586a2a4726fda55 [file] [log] [blame]
Billy Donahuebbb54ef2015-08-31 02:19:39 -04001#!/usr/bin/env sh
Billy Donahue520d30c2015-08-31 09:54:37 -04002set -evx
Billy Donahuebbb54ef2015-08-31 02:19:39 -04003env | sort
4
Billy Donahuefbb0b962015-09-01 02:24:48 -04005mkdir build || true
Herbert Thielend33861d2017-08-29 17:41:26 +02006cd build
Billy Donahue6fc49052015-09-01 02:41:55 -04007cmake -Dgtest_build_samples=ON \
8 -Dgmock_build_samples=ON \
9 -Dgtest_build_tests=ON \
10 -Dgmock_build_tests=ON \
deki517b3bd2015-09-07 18:23:25 -040011 -DCMAKE_CXX_FLAGS=$CXX_FLAGS \
Herbert Thielend33861d2017-08-29 17:41:26 +020012 ..
Billy Donahuefefba422015-08-31 10:29:11 -040013make
Arkadiy Shapkin43c0ae32016-06-25 01:29:18 +030014CTEST_OUTPUT_ON_FAILURE=1 make test