Merge pull request #381 from phst/end-of-file-error-code

Use a more specific error code for premature end of input
This commit is contained in:
Petri Lehtinen
2018-02-09 09:40:42 +02:00
committed by GitHub
2 changed files with 12 additions and 0 deletions

View File

@@ -221,6 +221,14 @@ static void error_code()
fail("error.text longer than expected");
if(json_error_code(&error) != json_error_end_of_input_expected)
fail("json_loads returned incorrect error code");
json = json_loads("{\"foo\": ", 0, &error);
if(json != NULL)
fail("json_loads returned not NULL");
if(strlen(error.text) >= JSON_ERROR_TEXT_LENGTH)
fail("error.text longer than expected");
if(json_error_code(&error) != json_error_premature_end_of_input)
fail("json_loads returned incorrect error code");
}
static void run_tests()