mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
ad3694b82a
1) Remove the non-Windows-only condition for subdir('tests'). 2) Add libiphlpapi, libws2_32 and libsecur32 deps, needed for W32 tests. 3) Remove the -no-undefined argument (gcc doesn't understand it, it *does* understand -Wl,-no-undefined; either way, the test compiles without this argument just fine; maybe meson adds it by itself - you can hardly build shared modules without it). 4) Add or fix a number of includes 5) Disable gdbus-objectmanager tests when building with MSVC (right now these tests don't work on Windows anyway, so the fact that MSVC can't even build them properly is irrelevant; most likely gdbus-codegen needs changes to put _GLIB_EXTERN before each function)
64 lines
1.7 KiB
C
64 lines
1.7 KiB
C
/* Test module for GIOModule tests
|
|
* Copyright (C) 2013 Red Hat, Inc
|
|
* Author: Matthias Clasen
|
|
*
|
|
* This work is provided "as is"; redistribution and modification
|
|
* in whole or in part, in any medium, physical or electronic is
|
|
* permitted without restriction.
|
|
*
|
|
* This work 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.
|
|
*
|
|
* In no event shall the authors or contributors be liable for any
|
|
* direct, indirect, incidental, special, exemplary, or consequential
|
|
* damages (including, but not limited to, procurement of substitute
|
|
* goods or services; loss of use, data, or profits; or business
|
|
* interruption) however caused and on any theory of liability, whether
|
|
* in contract, strict liability, or tort (including negligence or
|
|
* otherwise) arising in any way out of the use of this software, even
|
|
* if advised of the possibility of such damage.
|
|
*/
|
|
|
|
#include "config.h" /* for _GLIB_EXTERN */
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include "symbol-visibility.h"
|
|
|
|
typedef struct _TestA {
|
|
GObject parent;
|
|
} TestA;
|
|
|
|
typedef struct _TestAClass {
|
|
GObjectClass parent_class;
|
|
} TestAClass;
|
|
|
|
GType test_a_get_type (void);
|
|
|
|
G_DEFINE_TYPE (TestA, test_a, G_TYPE_OBJECT)
|
|
|
|
static void
|
|
test_a_class_init (TestAClass *class)
|
|
{
|
|
}
|
|
|
|
static void
|
|
test_a_init (TestA *self)
|
|
{
|
|
}
|
|
|
|
GLIB_TEST_EXPORT_SYMBOL void
|
|
g_io_module_load (GIOModule *module)
|
|
{
|
|
g_io_extension_point_implement ("test-extension-point",
|
|
test_a_get_type (),
|
|
"test-a",
|
|
30);
|
|
}
|
|
|
|
GLIB_TEST_EXPORT_SYMBOL void
|
|
g_io_module_unload (GIOModule *module)
|
|
{
|
|
}
|