gnucash/libgnucash/gnc-module/test/test-dynload.c

113 lines
3.7 KiB
C
Raw Normal View History

/*********************************************************************
* test-dynload.c
* test the ability to dlopen the gnc_module library and initialize
* it via dlsym
*********************************************************************/
/********************************************************************\
* 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 *
* *
\********************************************************************/
#include <config.h>
#include <stdio.h>
#include <gmodule.h>
#include <libguile.h>
#include <unittest-support.h>
#include "gnc-module.h"
2001-08-08 Dave Peticolas <dave@krondo.com> * src/engine/engine-helpers.[ch]: remove cruft * src/guile/gnc-helpers.c: fix warnings * src/import-export/qif-import/gncmod-qif-import.c: include api header * src/register/register-gnome/gncmod-register-gnome.c: include api header * src/register/register-core/gncmod-register-core.c: include api header * src/register/ledger-core/gncmod-ledger-core.c: include api header * src/backend/postgres/gncmod-backend-postgres.c: include api header * src/backend/rpc/gncmod-backend-rpc.c: include api header * src/backend/file/gnc-pricedb-xml-v1.c: fix warning * src/backend/file/Makefile.am (SUBDIRS): fix includes * src/backend/file/gncmod-backend-file.c: include api header * src/engine/gncmod-engine.c: include api header * src/gnc-module/test/test-dynload.c: fix warning * src/gnc-module/test/misc-mods/agedver.c: include api header * src/gnc-module/test/misc-mods/incompatdep.c: include api header * src/gnc-module/test/misc-mods/futuremodsys.c: include api header * src/gnc-module/test/mod-baz/gnc-mod-baz.c: include api header * src/gnc-module/test/mod-bar/gnc-mod-bar.c: include api header * src/gnc-module/test/mod-bar/Makefile.am: fix includes * src/gnc-module/test/mod-foo/gnc-mod-foo.c: include api header * src/gnc-module/test/mod-foo/Makefile.am: fix includes * src/gnc-module/gnc-module-api.h: new file. public module api * src/gnc-module/Makefile.am: add headers git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5088 57a11ea4-9604-0410-9ed3-97b8803252fd
2001-08-08 06:11:54 -05:00
static void
guile_main(void *closure, int argc, char ** argv)
{
GModule *gmodule;
gchar *msg = "Module '../../../libgnucash/gnc-module/test/misc-mods/.libs/libgncmod_futuremodsys.so' requires newer module system\n";
gchar *logdomain = "gnc.module";
gchar *modpath;
guint loglevel = G_LOG_LEVEL_WARNING;
const char *libdir = g_getenv("LIBDIR");
TestErrorStruct check = { loglevel, logdomain, msg };
g_log_set_handler (logdomain, loglevel,
(GLogFunc)test_checked_handler, &check);
if (libdir == NULL)
{
libdir = "../.libs";
}
g_test_message(" test-dynload.c: testing dynamic linking of libgnc-module ...");
#ifdef G_OS_WIN32
/* MinGW builds libgnc-module-0.dll */
if (libdir == NULL)
{
modpath = g_module_build_path ("../.libs", "gnc-module-0");
}
else
{
modpath = g_module_build_path (libdir, "gnc-module");
}
#elif defined(GNC_PLATFORM_OSX)
/* 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.
*/
if (libdir == NULL)
{
modpath = g_build_filename ("..", ".libs", "libgnc-module.dylib", NULL);
}
else
{
modpath = g_build_filename (libdir, "libgnc-module.dylib", NULL);
}
#else /* Regular Unix */
modpath = g_module_build_path (libdir, "gnc-module");
#endif
gmodule = g_module_open(modpath, 0);
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);
}
}
else
{
printf(" failed to open library.\n");
printf("%s\n", g_module_error());
exit(-1);
}
}
int
main(int argc, char ** argv)
{
scm_boot_guile(argc, argv, guile_main, NULL);
return 0;
}