mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
testModule: exit if the module can't be opened
Instead of silently exiting with success when the module cannot be found, emit a message and fail the test.
This commit is contained in:
parent
b1b0df6e9b
commit
21f2ce7112
30
testModule.c
30
testModule.c
@ -49,24 +49,26 @@ int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
|
|||||||
xmlStrPrintf(filename, sizeof(filename),
|
xmlStrPrintf(filename, sizeof(filename),
|
||||||
"%s/testdso%s",
|
"%s/testdso%s",
|
||||||
(const xmlChar*)MODULE_PATH,
|
(const xmlChar*)MODULE_PATH,
|
||||||
(const xmlChar*)LIBXML_MODULE_EXTENSION);
|
(const xmlChar*)LIBXML_MODULE_EXTENSION);
|
||||||
|
|
||||||
module = xmlModuleOpen((const char*)filename, 0);
|
module = xmlModuleOpen((const char*)filename, 0);
|
||||||
if (module)
|
if (module == NULL) {
|
||||||
{
|
fprintf(stderr, "Failed to open module\n");
|
||||||
if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
|
return(1);
|
||||||
fprintf(stderr, "Failure to lookup\n");
|
}
|
||||||
return(1);
|
|
||||||
}
|
|
||||||
if (hello_world == NULL) {
|
|
||||||
fprintf(stderr, "Lookup returned NULL\n");
|
|
||||||
return(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
(*hello_world)();
|
if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
|
||||||
|
fprintf(stderr, "Failure to lookup\n");
|
||||||
|
return(1);
|
||||||
|
}
|
||||||
|
if (hello_world == NULL) {
|
||||||
|
fprintf(stderr, "Lookup returned NULL\n");
|
||||||
|
return(1);
|
||||||
|
}
|
||||||
|
|
||||||
xmlModuleClose(module);
|
(*hello_world)();
|
||||||
}
|
|
||||||
|
xmlModuleClose(module);
|
||||||
|
|
||||||
xmlMemoryDump();
|
xmlMemoryDump();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user