config-parser: Add tests for expect behavuor on NULL configs and sections
This commit is contained in:
parent
7732540f71
commit
82189f7abd
|
@ -192,5 +192,11 @@ int main(int argc, char *argv[])
|
|||
config = run_test(t4);
|
||||
assert(config == NULL);
|
||||
|
||||
weston_config_destroy(NULL);
|
||||
assert(weston_config_next_section(NULL, NULL, NULL) == 0);
|
||||
|
||||
section = weston_config_get_section(NULL, "bucket", NULL, NULL);
|
||||
assert(section == NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue