Hi. My compiler MinGWx64 said [-Wdeprecated-declarations]
Branch: develop
Commit: fd4a0ec
Info about commit:
$ git log -1
commit fd4a0ecabc301c5b6b551058080120d3bb6ee729
Merge: 5fa5c17 88dc7c1
Author: Niels Lohmann <mail@nlohmann.me>
Date: Tue Jun 13 08:41:14 2017 +0200
Merge branch 'feature/ifstream' into develop
About compiler:
$ g++ --version
g++.exe (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 6.2.0
Copyright (C) 2016 Free Software Foundation, Inc.
Compiler output
xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp: In function 'void ____C_A_T_C_H____T_E_S_T____34()':
xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:71:18: warning: 'std::ostream& nlohmann::operator>>(const nlohmann::basic_json<>&, std::ostream&)' is deprecated [-Wdeprecated-declarations]
j >> ss;
^~
In file included from xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:31:0:
G:/user-sdd/devel.emb/workspace/avds/Libraries/nloghman-json-cpp/src/json.hpp:7405:26: note: declared here
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
^~~~~~~~
xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:80:18: warning: 'std::ostream& nlohmann::operator>>(const nlohmann::basic_json<>&, std::ostream&)' is deprecated [-Wdeprecated-declarations]
j >> ss;
^~
In file included from xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:31:0:
G:/user-sdd/devel.emb/workspace/avds/Libraries/nloghman-json-cpp/src/json.hpp:7405:26: note: declared here
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
^~~~~~~~
xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:91:18: warning: 'std::ostream& nlohmann::operator>>(const nlohmann::basic_json<>&, std::ostream&)' is deprecated [-Wdeprecated-declarations]
j >> ss;
^~
In file included from xxxxxx\nloghman-json-cpp\test\src\unit-serialization.cpp:31:0:
G:/user-sdd/devel.emb/workspace/avds/Libraries/nloghman-json-cpp/src/json.hpp:7405:26: note: declared here
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
^~~~~~~~
Run json_unit.exe
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
json_unit.exe is a Catch v1.8.1 host application.
Run with -? for options
-------------------------------------------------------------------------------
compliance tests from json.org
no failures with trailing literals (relaxed)
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:85
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:100: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/fail7.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:100: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/fail8.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:100: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/fail10.json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
compliance tests from json.org
expected passes
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:104
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:116: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/pass1.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:116: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/pass2.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:116: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/json_tests/pass3.json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
compliance tests from nativejson-benchmark
roundtrip
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:281
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:281: FAILED:
due to unexpected exception with message:
[json.exception.parse_error.101] parse error at 1: syntax error - unexpected
end of input
-------------------------------------------------------------------------------
test suite from json-test-suite
read all sample.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:335
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:341: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:344: FAILED:
CHECK( j.size() == 3 )
with expansion:
0 == 3
-------------------------------------------------------------------------------
json.org examples
1.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:352
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:356: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
json.org examples
2.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:359
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:363: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
json.org examples
3.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:366
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:370: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
json.org examples
4.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:373
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:377: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
json.org examples
5.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:380
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:384: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
nst's JSONTestSuite
test_parsing
y
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:461
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_arraysWithSpaces.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_array_empty-string.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_array_empty.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_ending_with_newline.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_array_false.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_array_heterogeneous.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_array_null.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_with_1_and_newline.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_with_leading_space.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_with_several_null.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_array_with_trailing_space.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_0e+1.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_0e1.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_after_space.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_double_close_to_zero.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_double_huge_neg_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_int_with_exp.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_minus_zero.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_negative_int.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_negative_one.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_negative_zero.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_capital_e.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_capital_e_neg_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_capital_e_pos_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_real_exponent.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_fraction_exponent.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_real_neg_exp.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_pos_exponent.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_underflow.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_simple_int.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_simple_real.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_too_big_neg_int.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_too_big_pos_int.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_very_big_negative_int.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_basic.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_object_duplicated_key.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_object_duplicated_key_and_value.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_empty.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_empty_key.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_object_escaped_null_in_key.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_object_extreme_numbers.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_long_strings.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_simple.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_object_string_unicode.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_object_with_newlines.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_1_2_3_bytes_UTF-8_sequences.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_UTF-
16_Surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_accepted_surrogate_pair.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_accepted_surrogate_pairs.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_allowed_escapes.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_backslash_and_u_escaped_zero.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_backslash_doublequotes.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_comments.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_double_escape_a.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_double_escape_n.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_escaped_control_character.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_escaped_noncharacter.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_in_array.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_in_array_with_leading_space.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_last_surrogates_1_and_2.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_newline_uescaped.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_nonCharacterInUTF-8_U+10FFFF.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_nonCharacterInUTF-8_U+1FFFF.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_nonCharacterInUTF-8_U+FFFF.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_null_escape.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_one-byte-utf-
8.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_pi.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_simple_ascii.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_space.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_three-byte-
utf-8.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_two-byte-utf-
8.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_u+2028_line_sep.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_u+2029_par_sep.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_uEscape.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_unescaped_char_delete.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_unicode.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_unicodeEscapedBackslash.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_unicode_2.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_unicode_U+2064_invisible_plus.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_unicode_escaped_double_quote.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_string_utf8.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_string_with_del_character.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_lonely_false.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_structure_lonely_int.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_lonely_negative_real.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_lonely_null.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_lonely_string.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_lonely_true.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_string_empty.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_trailing_newline.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_true_in_array.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:567: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_structure_whitespace_array.json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
nst's JSONTestSuite
test_parsing
n -> y (relaxed)
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:779
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_array_comma_after_close.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/n_array_extra_close.
json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_object_trailing_comment.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_object_trailing_comment_open.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_object_trailing_comment_slash_open.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_object_trailing_comment_slash_open_incomplete.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_object_with_trailing_garbage.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_string_with_trailing_garbage.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_array_trailing_garbage.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_array_with_extra_array_close.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_close_unopened_array.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_double_array.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_number_with_trailing_garbage.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_object_followed_by_closing_object.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
n_structure_object_with_trailing_garbage.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:808: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/n_structure_trailing_#.
json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
nst's JSONTestSuite
test_parsing
i -> y
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:812
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_structure_500_nested_arrays.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/i_structure_UTF-
8_BOM_empty_object.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_string_unicode_U+10FFFE_nonchar.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_string_unicode_U+1FFFE_nonchar.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_string_unicode_U+FDD0_nonchar.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:831: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_string_unicode_U+FFFE_nonchar.json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
nst's JSONTestSuite
test_parsing
i/y -> n (out of range)
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:836
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:851: FAILED:
CHECK_THROWS_AS( f >> j, json::out_of_range )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_number_neg_int_huge_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:851: FAILED:
CHECK_THROWS_AS( f >> j, json::out_of_range )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
i_number_pos_double_huge_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:851: FAILED:
CHECK_THROWS_AS( f >> j, json::out_of_range )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/y_number_huge_exp.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:851: FAILED:
CHECK_THROWS_AS( f >> j, json::out_of_range )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_neg_overflow.json
[json.exception.parse_error.111] parse error: bad input stream
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:851: FAILED:
CHECK_THROWS_AS( f >> j, json::out_of_range )
due to unexpected exception with message:
filename := test/data/nst_json_testsuite/test_parsing/
y_number_real_pos_overflow.json
[json.exception.parse_error.111] parse error: bad input stream
-------------------------------------------------------------------------------
Big List of Naughty Strings
parsing blns.json
-------------------------------------------------------------------------------
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:901
...............................................................................
X:\xxx\nloghman-json-cpp\test\src\unit-testsuites.cpp:905: FAILED:
CHECK_NOTHROW( f >> j )
due to unexpected exception with message:
[json.exception.parse_error.111] parse error: bad input stream
I did not found in CONTRIBUTING.md that I should not post such a problems. I believe this report will be useful.
Hi. My compiler MinGWx64 said [-Wdeprecated-declarations]
Branch: develop
Commit: fd4a0ec
Info about commit:
About compiler:
Compiler output
Run
json_unit.exeI did not found in CONTRIBUTING.md that I should not post such a problems. I believe this report will be useful.