mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 15:33:39 +02:00
gio/tests/giomodule.c: Use G_MODULE_SUFFIX
The file extension of the GIO module could be something other than .so, depending on platform. Use G_MODULE_SUFFIX so that the test will run correctly on non-*nix platforms, such as Windows. https://bugzilla.gnome.org/show_bug.cgi?id=719344
This commit is contained in:
@@ -108,7 +108,7 @@ test_module_scan_all_with_scope (void)
|
||||
|
||||
ep = g_io_extension_point_register ("test-extension-point");
|
||||
scope = g_io_module_scope_new (G_IO_MODULE_SCOPE_BLOCK_DUPLICATES);
|
||||
g_io_module_scope_block (scope, "libtestmoduleb.so");
|
||||
g_io_module_scope_block (scope, "libtestmoduleb." G_MODULE_SUFFIX);
|
||||
g_io_modules_scan_all_in_directory_with_scope (g_test_get_filename (G_TEST_DIST, "modules", NULL), scope);
|
||||
list = g_io_extension_point_get_extensions (ep);
|
||||
g_io_modules_scan_all_in_directory_with_scope (g_test_get_filename (G_TEST_DIST, "modules/.libs", NULL), scope);
|
||||
|
Reference in New Issue
Block a user