Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
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
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
unit.cpp
test/unit.cpp
+1
-1
No files found.
.travis.yml
View file @
13751625
...
@@ -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'
README.md
View file @
13751625
...
@@ -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
)
...
...
test/unit.cpp
View file @
13751625
...
@@ -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"
)
{
{
...
...
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