fixes #310
This commit is contained in:
parent
7b6cba23f3
commit
6bbcdc1ec5
7 changed files with 3000025 additions and 3 deletions
1000002
test/data/regression/floats.json
Normal file
1000002
test/data/regression/floats.json
Normal file
File diff suppressed because it is too large
Load diff
1000002
test/data/regression/signed_ints.json
Normal file
1000002
test/data/regression/signed_ints.json
Normal file
File diff suppressed because it is too large
Load diff
1000002
test/data/regression/unsigned_ints.json
Normal file
1000002
test/data/regression/unsigned_ints.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -466,4 +466,20 @@ TEST_CASE("regression tests")
|
|||
CHECK_NOTHROW(j << f);
|
||||
}
|
||||
}
|
||||
|
||||
SECTION("issue #310 - make json_benchmarks no longer working in 2.0.4")
|
||||
{
|
||||
for (auto filename :
|
||||
{
|
||||
"test/data/regression/floats.json",
|
||||
"test/data/regression/signed_ints.json",
|
||||
"test/data/regression/unsigned_ints.json"
|
||||
})
|
||||
{
|
||||
CAPTURE(filename);
|
||||
json j;
|
||||
std::ifstream f(filename);
|
||||
CHECK_NOTHROW(j << f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue