🚧 debug

parent 97e0d20c
...@@ -89,22 +89,19 @@ TEST_CASE("UBJSON") ...@@ -89,22 +89,19 @@ TEST_CASE("UBJSON")
{ {
std::vector<int64_t> numbers; std::vector<int64_t> numbers;
numbers.push_back((std::numeric_limits<int64_t>::min)()); numbers.push_back((std::numeric_limits<int64_t>::min)());
numbers.push_back(-1000000000000000000l); numbers.push_back(-1000000000000000000ll);
numbers.push_back(-100000000000000000l); numbers.push_back(-100000000000000000ll);
numbers.push_back(-10000000000000000l); numbers.push_back(-10000000000000000ll);
numbers.push_back(-1000000000000000l); numbers.push_back(-1000000000000000ll);
numbers.push_back(-100000000000000l); numbers.push_back(-100000000000000ll);
numbers.push_back(-10000000000000l); numbers.push_back(-10000000000000ll);
numbers.push_back(-1000000000000l); numbers.push_back(-1000000000000ll);
numbers.push_back(-100000000000l); numbers.push_back(-100000000000ll);
numbers.push_back(-10000000000l); numbers.push_back(-10000000000ll);
numbers.push_back(-2147483649l); numbers.push_back(-2147483649ll);
size_t index = 0;
for (auto i : numbers) for (auto i : numbers)
{ {
CAPTURE(i); CAPTURE(i);
CAPTURE(index);
++index;
// create JSON value with integer number // create JSON value with integer number
json j = i; json j = i;
......
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