testsuite: Make tests not fail in !debug builds

Some of our tests rely on on warning that only
occur in debug builds. Skip them in non-debug
builds.

Fixes: #2656
This commit is contained in:
Matthias Clasen 2022-05-28 08:01:27 -04:00
parent 43ac055a46
commit 3db1d260ee

View File

@ -122,6 +122,11 @@ test_object_constructor_infanticide (void)
GObject *obj;
int i;
#ifndef G_ENABLE_DEBUG
g_test_skip ("skip tests that rely on debug-only warnings");
return;
#endif
g_test_bug ("https://bugzilla.gnome.org/show_bug.cgi?id=661576");
for (i = 0; i < 1000; i++)