Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2014-06-30 19:54:47 +0400
committerMilo Yip <miloyip@gmail.com>2014-06-30 19:54:47 +0400
commit93e1488c7b8576caa378c7c8118d4e9bf75ecd87 (patch)
tree92ca16a7e37d4cb65e2199c0d40ff15c9ed0670b /.travis.yml
parente3330d15c039c5689ccddf64111bfb72eae599ef (diff)
Run valgrind in second pass to get exit code correctly
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 8b24fd19..74a2a2fe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,5 +24,6 @@ script:
- make -C build/gmake -f test.make
- make -C build/gmake -f example.make
- cd bin
- - valgrind --leak-check=full ./unittest_${config_suffix}
+ - ./unittest_${config_suffix}
+ - valgrind --leak-check=full --error-exitcode=1 ./unittest_${config_suffix}
- ./perftest_${config_suffix}