2009-10-27 23:46:57 +08:00
|
|
|
/*
|
2011-01-21 03:28:54 +08:00
|
|
|
* Copyright (c) 2009-2011 Petri Lehtinen <petri@digip.org>
|
2009-10-27 23:46:57 +08:00
|
|
|
*
|
|
|
|
* Jansson is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <jansson.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
json_t *json;
|
2010-10-27 02:05:40 +08:00
|
|
|
json_error_t error;
|
2009-10-27 23:46:57 +08:00
|
|
|
|
2010-08-14 03:19:20 +08:00
|
|
|
json = json_load_file("/path/to/nonexistent/file.json", 0, &error);
|
2010-10-27 02:05:40 +08:00
|
|
|
if(error.line != -1)
|
2009-10-27 23:46:57 +08:00
|
|
|
fail("json_load_file returned an invalid line number");
|
2010-10-27 02:05:40 +08:00
|
|
|
if(strcmp(error.text, "unable to open /path/to/nonexistent/file.json: No such file or directory") != 0)
|
2009-10-27 23:46:57 +08:00
|
|
|
fail("json_load_file returned an invalid error message");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|