summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-11-02 15:21:02 +0100
committerThomas Haller <thaller@redhat.com>2015-11-02 15:36:01 +0100
commitea0e36b61d0054261c94970826829695227de374 (patch)
tree980fced7190bbb5ab130a1c74c5f9e63d100fdc2
parent7ae20d70bfa4baca1424564186761db27619d5b6 (diff)
downloadNetworkManager-ea0e36b61d0054261c94970826829695227de374.tar.gz
test: disable g_log_set_always_fatal() for non-assert tests on older glib versions
This fixes test-failure for src/platform/tests/test-link-fake on older systems.
-rw-r--r--include/nm-test-utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/nm-test-utils.h b/include/nm-test-utils.h
index 9f40be9c12..8ab2f84da2 100644
--- a/include/nm-test-utils.h
+++ b/include/nm-test-utils.h
@@ -400,8 +400,13 @@ __nmtst_init (int *argc, char ***argv, gboolean assert_logging, const char *log_
*out_set_logging = TRUE;
#endif
g_assert (success);
+#if GLIB_CHECK_VERSION(2,34,0)
if (__nmtst_internal.no_expect_message)
g_log_set_always_fatal (G_LOG_FATAL_MASK);
+#else
+ /* g_test_expect_message() is a NOP, so allow any messages */
+ g_log_set_always_fatal (G_LOG_FATAL_MASK);
+#endif
} else if (__nmtst_internal.no_expect_message) {
/* We have a test that would be assert_logging, but the user specified no_expect_message.
* This transforms g_test_expect_message() into a NOP, but we also have to relax