1
0
mirror of https://github.com/nlohmann/json synced 2024-09-20 06:40:13 +00:00

exclude Unicode tests from Valgrind to avoid timeout

This commit is contained in:
Niels 2015-06-15 05:46:12 +02:00
parent 2e9a13bd88
commit 1375162562
3 changed files with 4 additions and 4 deletions

View File

@ -13,12 +13,12 @@ before_install:
script: script:
- make - make
- ./json_unit - ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit - valgrind --error-exitcode=1 --leak-check=full ./json_unit
after_success: after_success:
- make clean - make clean
- touch src/json.hpp - 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"
- ./json_unit - ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' - coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'

View File

@ -395,7 +395,7 @@ To compile and run the tests, you need to execute
```sh ```sh
$ make $ make
$ ./json_unit $ ./json_unit "*"
=============================================================================== ===============================================================================
All tests passed (3341006 assertions in 22 test cases) All tests passed (3341006 assertions in 22 test cases)

View File

@ -8716,7 +8716,7 @@ TEST_CASE("compliance tests from nativejson-benchmark")
} }
} }
TEST_CASE("Unicode") TEST_CASE("Unicode", "[hide]")
{ {
SECTION("full enumeration of Unicode codepoints") SECTION("full enumeration of Unicode codepoints")
{ {