From 3af829ef021c2970198c27a728017649e002f70a Mon Sep 17 00:00:00 2001 From: Niels Date: Fri, 24 Jul 2015 22:29:03 +0200 Subject: [PATCH] try --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ca8751b5a..629c29c68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,13 +31,13 @@ before_script: - pip install --user git+git://github.com/eddyxu/cpp-coveralls.git script: - - make CXX=$COMPILER + - make CXX=$COMPILER CXXFLAGS="-lstdc++" - ./json_unit "*" - valgrind --error-exitcode=1 --leak-check=full ./json_unit after_success: - make clean - touch src/json.hpp - - make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11" CXX=$COMPILER + - make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER - ./json_unit "*" - coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'