2001-08-07 18:29:04 -05:00
|
|
|
/*********************************************************************
|
|
|
|
* test-dynload.c
|
|
|
|
* test the ability to dlopen the gnc_module library and initialize
|
2007-01-05 18:41:51 -06:00
|
|
|
* it via dlsym
|
2001-08-07 18:29:04 -05:00
|
|
|
*********************************************************************/
|
2015-09-29 14:08:48 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
|
|
* *
|
|
|
|
\********************************************************************/
|
|
|
|
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2017-10-26 04:14:21 -05:00
|
|
|
#include <config.h>
|
2001-08-07 18:29:04 -05:00
|
|
|
#include <stdio.h>
|
2007-01-05 18:41:51 -06:00
|
|
|
#include <gmodule.h>
|
2003-02-22 02:15:53 -06:00
|
|
|
#include <libguile.h>
|
2012-04-03 16:35:19 -05:00
|
|
|
#include <unittest-support.h>
|
2001-08-07 18:29:04 -05:00
|
|
|
|
|
|
|
#include "gnc-module.h"
|
|
|
|
|
2001-08-08 06:11:54 -05:00
|
|
|
static void
|
2003-02-22 02:15:53 -06:00
|
|
|
guile_main(void *closure, int argc, char ** argv)
|
2001-10-10 18:26:42 -05:00
|
|
|
{
|
2009-12-29 14:12:48 -06:00
|
|
|
GModule *gmodule;
|
2017-08-10 06:56:00 -05:00
|
|
|
gchar *msg = "Module '../../../libgnucash/gnc-module/test/misc-mods/.libs/libgncmod_futuremodsys.so' requires newer module system\n";
|
2011-12-04 18:08:10 -06:00
|
|
|
gchar *logdomain = "gnc.module";
|
2012-12-01 16:41:41 -06:00
|
|
|
gchar *modpath;
|
2011-12-04 18:08:10 -06:00
|
|
|
guint loglevel = G_LOG_LEVEL_WARNING;
|
2016-01-23 16:45:34 -06:00
|
|
|
const char *libdir = g_getenv("LIBDIR");
|
2011-12-04 18:08:10 -06:00
|
|
|
TestErrorStruct check = { loglevel, logdomain, msg };
|
|
|
|
g_log_set_handler (logdomain, loglevel,
|
2012-01-01 14:36:46 -06:00
|
|
|
(GLogFunc)test_checked_handler, &check);
|
2011-12-04 18:08:10 -06:00
|
|
|
|
2016-01-23 16:45:34 -06:00
|
|
|
if (libdir == NULL)
|
|
|
|
{
|
|
|
|
libdir = "../.libs";
|
|
|
|
}
|
|
|
|
|
2011-12-04 18:08:10 -06:00
|
|
|
g_test_message(" test-dynload.c: testing dynamic linking of libgnc-module ...");
|
2012-12-01 16:41:41 -06:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
/* MinGW builds libgnc-module-0.dll */
|
2016-01-27 14:50:51 -06:00
|
|
|
if (libdir == NULL)
|
|
|
|
{
|
|
|
|
modpath = g_module_build_path ("../.libs", "gnc-module-0");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
modpath = g_module_build_path (libdir, "gnc-module");
|
|
|
|
}
|
2015-02-24 16:11:03 -06:00
|
|
|
#elif defined(GNC_PLATFORM_OSX)
|
2012-12-01 16:41:41 -06:00
|
|
|
/* We build libgnc-module as a shared library for testing, and on OSX
|
|
|
|
* that means that g_module_build_path (), which uses ".so", doesn't
|
|
|
|
* build the right path name.
|
|
|
|
*/
|
2016-01-23 16:45:34 -06:00
|
|
|
if (libdir == NULL)
|
|
|
|
{
|
|
|
|
modpath = g_build_filename ("..", ".libs", "libgnc-module.dylib", NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
modpath = g_build_filename (libdir, "libgnc-module.dylib", NULL);
|
|
|
|
}
|
2012-12-01 16:41:41 -06:00
|
|
|
#else /* Regular Unix */
|
2016-01-23 16:45:34 -06:00
|
|
|
modpath = g_module_build_path (libdir, "gnc-module");
|
2012-12-01 16:41:41 -06:00
|
|
|
#endif
|
|
|
|
gmodule = g_module_open(modpath, 0);
|
2009-12-29 14:12:48 -06:00
|
|
|
|
|
|
|
if (gmodule)
|
|
|
|
{
|
|
|
|
gpointer ptr;
|
|
|
|
if (g_module_symbol(gmodule, "gnc_module_system_init", &ptr))
|
|
|
|
{
|
|
|
|
void (* fn)(void) = ptr;
|
|
|
|
fn();
|
|
|
|
printf(" OK\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf(" failed to find gnc_module_system_init\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
2001-08-07 18:29:04 -05:00
|
|
|
}
|
2009-12-29 14:12:48 -06:00
|
|
|
else
|
|
|
|
{
|
|
|
|
printf(" failed to open library.\n");
|
|
|
|
printf("%s\n", g_module_error());
|
|
|
|
exit(-1);
|
2001-08-07 18:29:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-02-22 02:15:53 -06:00
|
|
|
main(int argc, char ** argv)
|
|
|
|
{
|
2009-12-29 14:12:48 -06:00
|
|
|
scm_boot_guile(argc, argv, guile_main, NULL);
|
|
|
|
return 0;
|
2001-08-07 18:29:04 -05:00
|
|
|
}
|
|
|
|
|