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
fed70f6b
Unverified
Commit
fed70f6b
authored
Aug 14, 2018
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
reindented code
parent
0e748f2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
27 deletions
+29
-27
test/src/unit-cbor.cpp
test/src/unit-cbor.cpp
+13
-12
test/src/unit-msgpack.cpp
test/src/unit-msgpack.cpp
+16
-15
No files found.
test/src/unit-cbor.cpp
View file @
fed70f6b
...
...
@@ -1661,18 +1661,19 @@ TEST_CASE("CBOR roundtrips", "[hide]")
SECTION
(
"input from flynn"
)
{
// most of these are exluded due to differences in key order (not a real problem)
auto
exclude_packed
=
std
::
set
<
std
::
string
>
{
"test/data/json.org/1.json"
,
"test/data/json.org/2.json"
,
"test/data/json.org/3.json"
,
"test/data/json.org/4.json"
,
"test/data/json.org/5.json"
,
"test/data/json_testsuite/sample.json"
,
// kills AppVeyor
"test/data/json_tests/pass1.json"
,
"test/data/regression/working_file.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_duplicated_key.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_long_strings.json"
,
auto
exclude_packed
=
std
::
set
<
std
::
string
>
{
"test/data/json.org/1.json"
,
"test/data/json.org/2.json"
,
"test/data/json.org/3.json"
,
"test/data/json.org/4.json"
,
"test/data/json.org/5.json"
,
"test/data/json_testsuite/sample.json"
,
// kills AppVeyor
"test/data/json_tests/pass1.json"
,
"test/data/regression/working_file.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_duplicated_key.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_long_strings.json"
,
};
for
(
std
::
string
filename
:
...
...
test/src/unit-msgpack.cpp
View file @
fed70f6b
...
...
@@ -1350,21 +1350,22 @@ TEST_CASE("MessagePack roundtrips", "[hide]")
SECTION
(
"input from msgpack-python"
)
{
// most of these are exluded due to differences in key order (not a real problem)
auto
exclude_packed
=
std
::
set
<
std
::
string
>
{
"test/data/json.org/1.json"
,
"test/data/json.org/2.json"
,
"test/data/json.org/3.json"
,
"test/data/json.org/4.json"
,
"test/data/json.org/5.json"
,
"test/data/json_testsuite/sample.json"
,
// kills AppVeyor
"test/data/json_tests/pass1.json"
,
"test/data/regression/working_file.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_basic.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_duplicated_key.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_long_strings.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_simple.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_string_unicode.json"
,
auto
exclude_packed
=
std
::
set
<
std
::
string
>
{
"test/data/json.org/1.json"
,
"test/data/json.org/2.json"
,
"test/data/json.org/3.json"
,
"test/data/json.org/4.json"
,
"test/data/json.org/5.json"
,
"test/data/json_testsuite/sample.json"
,
// kills AppVeyor
"test/data/json_tests/pass1.json"
,
"test/data/regression/working_file.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_basic.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_duplicated_key.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_long_strings.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_simple.json"
,
"test/data/nst_json_testsuite/test_parsing/y_object_string_unicode.json"
,
};
for
(
std
::
string
filename
:
...
...
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