forked from open-source-parsers/jsoncpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request open-source-parsers#265 from cdunn2001/valgrind
run valgrind in Travis CI
- Loading branch information
Showing
3 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env sh | ||
# This is called by `.travis.yml` via Travis CI. | ||
# Travis supplies $TRAVIS_OS_NAME. | ||
# http://docs.travis-ci.com/user/multi-os/ | ||
# Our .travis.yml also defines: | ||
# - SHARED_LIB=ON/OFF | ||
# - STATIC_LIB=ON/OFF | ||
# - CMAKE_PKG=ON/OFF | ||
# - BUILD_TYPE=release/debug | ||
# - VERBOSE_MAKE=false/true | ||
# - VERBOSE (set or not) | ||
|
||
# -e: fail on error | ||
# -v: show commands | ||
# -x: show expanded commands | ||
set -vex | ||
|
||
env | sort | ||
|
||
cmake -DJSONCPP_WITH_CMAKE_PACKAGE=$CMAKE_PKG -DBUILD_SHARED_LIBS=$SHARED_LIB -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_MAKE . | ||
make | ||
|
||
# Python is not available in Travis for osx. | ||
# https://github.com/travis-ci/travis-ci/issues/2320 | ||
if [ "$TRAVIS_OS_NAME" != "osx" ] | ||
then | ||
make jsoncpp_check | ||
valgrind --error-exitcode=42 --leak-check=full ./src/test_lib_json/jsoncpp_test | ||
fi |