mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 17:06:18 +01:00
gmodule: skip local-binding test on Windows
This commit is contained in:
parent
73d913519d
commit
3ab13ddc4b
@ -245,6 +245,11 @@ test_local_binding (void)
|
|||||||
|
|
||||||
g_test_summary ("Test that binding a library's symbols locally does not add them globally");
|
g_test_summary ("Test that binding a library's symbols locally does not add them globally");
|
||||||
|
|
||||||
|
#if defined(G_PLATFORM_WIN32)
|
||||||
|
g_test_skip ("G_MODULE_BIND_LOCAL is not supported on Windows.");
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
plugin = g_test_build_filename (G_TEST_BUILT, MODULE_FILENAME_PREFIX "moduletestplugin_a_" MODULE_TYPE, NULL);
|
plugin = g_test_build_filename (G_TEST_BUILT, MODULE_FILENAME_PREFIX "moduletestplugin_a_" MODULE_TYPE, NULL);
|
||||||
|
|
||||||
module_plugin = g_module_open_full (plugin, G_MODULE_BIND_LOCAL, &error);
|
module_plugin = g_module_open_full (plugin, G_MODULE_BIND_LOCAL, &error);
|
||||||
|
Loading…
Reference in New Issue
Block a user