summaryrefslogtreecommitdiff
path: root/test/core
diff options
context:
space:
mode:
Diffstat (limited to 'test/core')
-rw-r--r--test/core/error-mapping.c1
-rw-r--r--test/core/manual/invalid-usage.c1
-rw-r--r--test/core/my-object-subclass.c2
-rw-r--r--test/core/my-object.c2
-rw-r--r--test/core/peer-client.c1
-rw-r--r--test/core/peer-on-bus.c1
-rw-r--r--test/core/peer-server.c1
-rw-r--r--test/core/proxy-noc.c1
-rw-r--r--test/core/proxy-peer.c1
-rw-r--r--test/core/registrations.c1
-rw-r--r--test/core/shared-bus.c1
-rw-r--r--test/core/test-dbus-glib.c1
-rw-r--r--test/core/test-gvariant.c1
-rw-r--r--test/core/test-service-glib.c1
-rw-r--r--test/core/test-types.c1
-rw-r--r--test/core/test-variant-recursion.c1
-rw-r--r--test/core/unsupported-type.c1
17 files changed, 19 insertions, 0 deletions
diff --git a/test/core/error-mapping.c b/test/core/error-mapping.c
index 58306b4..9d0c0b1 100644
--- a/test/core/error-mapping.c
+++ b/test/core/error-mapping.c
@@ -26,6 +26,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <glib.h>
#include <gio/gio.h>
diff --git a/test/core/manual/invalid-usage.c b/test/core/manual/invalid-usage.c
index e87007d..383c1f5 100644
--- a/test/core/manual/invalid-usage.c
+++ b/test/core/manual/invalid-usage.c
@@ -28,6 +28,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <glib.h>
diff --git a/test/core/my-object-subclass.c b/test/core/my-object-subclass.c
index a5e4035..bb23484 100644
--- a/test/core/my-object-subclass.c
+++ b/test/core/my-object-subclass.c
@@ -1,6 +1,8 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
+
#include <string.h>
#include <glib/gi18n.h>
#include <glib-object.h>
diff --git a/test/core/my-object.c b/test/core/my-object.c
index 02839cb..1414093 100644
--- a/test/core/my-object.c
+++ b/test/core/my-object.c
@@ -1,6 +1,8 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
+
#include <string.h>
#include <glib/gi18n.h>
#include <glib-object.h>
diff --git a/test/core/peer-client.c b/test/core/peer-client.c
index ba95616..73b4383 100644
--- a/test/core/peer-client.c
+++ b/test/core/peer-client.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <stdio.h>
#include <stdlib.h>
diff --git a/test/core/peer-on-bus.c b/test/core/peer-on-bus.c
index 87ff2d8..c40fc4c 100644
--- a/test/core/peer-on-bus.c
+++ b/test/core/peer-on-bus.c
@@ -38,6 +38,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <dbus/dbus-glib.h>
#include <dbus/dbus-glib-lowlevel.h>
diff --git a/test/core/peer-server.c b/test/core/peer-server.c
index 7b69c8b..e59a347 100644
--- a/test/core/peer-server.c
+++ b/test/core/peer-server.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <stdio.h>
#include <stdlib.h>
diff --git a/test/core/proxy-noc.c b/test/core/proxy-noc.c
index 843f1c3..320a24e 100644
--- a/test/core/proxy-noc.c
+++ b/test/core/proxy-noc.c
@@ -34,6 +34,7 @@
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
+#undef G_DISABLE_ASSERT
#endif
#include <glib.h>
diff --git a/test/core/proxy-peer.c b/test/core/proxy-peer.c
index 87d8d0a..2f4e538 100644
--- a/test/core/proxy-peer.c
+++ b/test/core/proxy-peer.c
@@ -27,6 +27,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <glib.h>
diff --git a/test/core/registrations.c b/test/core/registrations.c
index 621f9d1..35b09fa 100644
--- a/test/core/registrations.c
+++ b/test/core/registrations.c
@@ -38,6 +38,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <dbus/dbus-glib.h>
#include <dbus/dbus-glib-lowlevel.h>
diff --git a/test/core/shared-bus.c b/test/core/shared-bus.c
index df998ed..802f0a3 100644
--- a/test/core/shared-bus.c
+++ b/test/core/shared-bus.c
@@ -26,6 +26,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <glib.h>
diff --git a/test/core/test-dbus-glib.c b/test/core/test-dbus-glib.c
index 1a544d5..629830d 100644
--- a/test/core/test-dbus-glib.c
+++ b/test/core/test-dbus-glib.c
@@ -27,6 +27,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
/* -*- mode: C; c-file-style: "gnu" -*- */
#include <dbus/dbus-glib.h>
diff --git a/test/core/test-gvariant.c b/test/core/test-gvariant.c
index 8a6bced..0437675 100644
--- a/test/core/test-gvariant.c
+++ b/test/core/test-gvariant.c
@@ -28,6 +28,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <dbus/dbus-glib.h>
#include <gio/gio.h>
diff --git a/test/core/test-service-glib.c b/test/core/test-service-glib.c
index 1b328f7..5e05ded 100644
--- a/test/core/test-service-glib.c
+++ b/test/core/test-service-glib.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
/* -*- mode: C; c-file-style: "gnu" -*- */
#include <dbus/dbus-glib.h>
diff --git a/test/core/test-types.c b/test/core/test-types.c
index 00b522c..11348f3 100644
--- a/test/core/test-types.c
+++ b/test/core/test-types.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <stdio.h>
#include <stdlib.h>
diff --git a/test/core/test-variant-recursion.c b/test/core/test-variant-recursion.c
index bc6df8e..464f7e5 100644
--- a/test/core/test-variant-recursion.c
+++ b/test/core/test-variant-recursion.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */
#include <config.h>
+#undef G_DISABLE_ASSERT
/* -*- mode: C; c-file-style: "gnu" -*- */
#include <stdio.h>
diff --git a/test/core/unsupported-type.c b/test/core/unsupported-type.c
index ac4d7df..2134a99 100644
--- a/test/core/unsupported-type.c
+++ b/test/core/unsupported-type.c
@@ -37,6 +37,7 @@
*/
#include <config.h>
+#undef G_DISABLE_ASSERT
#include <glib.h>
#include <glib/gstdio.h>