added CXX

This commit is contained in:
Niels 2015-07-24 21:54:38 +02:00
parent a4671428ca
commit 56f1db2996

View file

@ -19,13 +19,13 @@ before_script:
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
script:
- make
- make CXX=g++-4.9
- ./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"
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11" CXX=g++-4.9
- ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'