Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
13751625
Commit
13751625
authored
Jun 15, 2015
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exclude Unicode tests from Valgrind to avoid timeout
parent
2e9a13bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
.travis.yml
.travis.yml
+2
-2
README.md
README.md
+1
-1
test/unit.cpp
test/unit.cpp
+1
-1
No files found.
.travis.yml
View file @
13751625
...
...
@@ -13,12 +13,12 @@ before_install:
script
:
-
make
-
./json_unit
-
./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"
-
./json_unit
-
./json_unit
"*"
-
coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
README.md
View file @
13751625
...
...
@@ -395,7 +395,7 @@ To compile and run the tests, you need to execute
```
sh
$
make
$
./json_unit
$
./json_unit
"*"
===============================================================================
All tests passed
(
3341006 assertions
in
22
test
cases
)
...
...
test/unit.cpp
View file @
13751625
...
...
@@ -8716,7 +8716,7 @@ TEST_CASE("compliance tests from nativejson-benchmark")
}
}
TEST_CASE
(
"Unicode"
)
TEST_CASE
(
"Unicode"
,
"[hide]"
)
{
SECTION
(
"full enumeration of Unicode codepoints"
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment