Commit 13751625 authored by Niels's avatar Niels

exclude Unicode tests from Valgrind to avoid timeout

parent 2e9a13bd
...@@ -13,12 +13,12 @@ before_install: ...@@ -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'
...@@ -395,7 +395,7 @@ To compile and run the tests, you need to execute ...@@ -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)
......
...@@ -8716,7 +8716,7 @@ TEST_CASE("compliance tests from nativejson-benchmark") ...@@ -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")
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment