Merge branch '2.0'

This commit is contained in:
Petri Lehtinen 2011-04-05 15:38:37 +03:00
commit 76d6d700ad

View File

@ -15,6 +15,8 @@ int main()
json_error_t error;
json = json_load_file("/path/to/nonexistent/file.json", 0, &error);
if(json)
fail("json_load_file returned non-NULL for a nonexistent file");
if(error.line != -1)
fail("json_load_file returned an invalid line number");
if(strcmp(error.text, "unable to open /path/to/nonexistent/file.json: No such file or directory") != 0)