summary refs log tree commit diff
path: root/libnm
diff options
context:
space:
mode:
Diffstat (limited to 'libnm')
-rw-r--r--libnm/libnm.ver5
-rw-r--r--libnm/nm-client.c4
-rw-r--r--libnm/tests/meson.build9
3 files changed, 14 insertions, 4 deletions
diff --git a/libnm/libnm.ver b/libnm/libnm.ver
index 476cfcc9..1f76dc0f 100644
--- a/libnm/libnm.ver
+++ b/libnm/libnm.ver
@@ -1332,6 +1332,11 @@ global:
 	nm_utils_tc_tfilter_to_str;
 } libnm_1_10_0;
 
+libnm_1_10_14 {
+	#nm_setting_connection_get_mdns@libnm_1_10_14;
+	#nm_setting_connection_mdns_get_type@libnm_1_10_14;
+} libnm_1_10_2;
+
 libnm_1_12_0 {
 global:
 	nm_checkpoint_create_flags_get_type;
diff --git a/libnm/nm-client.c b/libnm/nm-client.c
index 96db30c7..1da22540 100644
--- a/libnm/nm-client.c
+++ b/libnm/nm-client.c
@@ -3802,3 +3802,7 @@ NM_BACKPORT_SYMBOL (libnm_1_0_6, gboolean, nm_utils_enum_from_str,
                     (type, str, out_value, err_token));
 
 NM_BACKPORT_SYMBOL (libnm_1_2_4, int, nm_setting_ip_config_get_dns_priority, (NMSettingIPConfig *setting), (setting));
+
+NM_BACKPORT_SYMBOL (libnm_1_10_14, NMSettingConnectionMdns, nm_setting_connection_get_mdns,
+                    (NMSettingConnection *setting), (setting));
+NM_BACKPORT_SYMBOL (libnm_1_10_14, GType, nm_setting_connection_mdns_get_type, (void), ());
diff --git a/libnm/tests/meson.build b/libnm/tests/meson.build
index 27fafb77..ae2f7124 100644
--- a/libnm/tests/meson.build
+++ b/libnm/tests/meson.build
@@ -1,8 +1,8 @@
 test_units = [
-  ['test-general',                [libnm_utils, libnm_core]],
-  ['test-nm-client',              []],
-  ['test-remote-settings-client', []],
-  ['test-secret-agent',           []],
+  ['test-general',                [libnm_utils, libnm_core], 30],
+  ['test-nm-client',              [],                        90],
+  ['test-remote-settings-client', [],                        90],
+  ['test-secret-agent',           [],                        90],
 ]
 
 cflags = [
@@ -28,6 +28,7 @@ foreach test_unit: test_units
   test(
     'libnm/' + test_unit[0],
     test_script,
+    timeout: test_unit[2],
     args: test_args + [exe.full_path()]
   )
 endforeach