about summary refs log tree commit diff
path: root/src/initrd/tests/test-ibft-reader.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2020-01-31 12:13:40 +0100
committerMichael Biebl <biebl@debian.org>2020-01-31 12:13:40 +0100
commit7d548822e672c0e8a580ae52d8f8df7f011103cd (patch)
tree9a592708c2f3245f60b8adf4fb3f2db61dff60b6 /src/initrd/tests/test-ibft-reader.c
parent55780b62324ba5492ce2670817fc0a8c209cc138 (diff)
parentf3c6d0765dff885e168b94f28e06ecc640315a74 (diff)
Update upstream source from tag 'upstream/1.22.6'
Update to upstream version '1.22.6'
with Debian dir dd9b100f674653057e9629a59eec828fcacf66ad
Diffstat (limited to 'src/initrd/tests/test-ibft-reader.c')
-rw-r--r--src/initrd/tests/test-ibft-reader.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/initrd/tests/test-ibft-reader.c b/src/initrd/tests/test-ibft-reader.c
index 932c1a48..f7709543 100644
--- a/src/initrd/tests/test-ibft-reader.c
+++ b/src/initrd/tests/test-ibft-reader.c
@@ -65,6 +65,7 @@ test_read_ibft_dhcp (void)
 	g_assert (s_con);
 	g_assert_cmpstr (nm_setting_connection_get_connection_type (s_con), ==, NM_SETTING_WIRED_SETTING_NAME);
 	g_assert_cmpstr (nm_setting_connection_get_id (s_con), ==, "iBFT Connection 1");
+	g_assert_cmpstr (nm_setting_connection_get_interface_name (s_con), ==, NULL);
 	g_assert_cmpint (nm_setting_connection_get_timestamp (s_con), ==, 0);
 	g_assert (nm_setting_connection_get_autoconnect (s_con));
 
@@ -109,6 +110,7 @@ test_read_ibft_static (void)
 	g_assert (s_con);
 	g_assert_cmpstr (nm_setting_connection_get_connection_type (s_con), ==, NM_SETTING_WIRED_SETTING_NAME);
 	g_assert_cmpstr (nm_setting_connection_get_id (s_con), ==, "iBFT Connection 0");
+	g_assert_cmpstr (nm_setting_connection_get_interface_name (s_con), ==, NULL);
 	g_assert_cmpint (nm_setting_connection_get_timestamp (s_con), ==, 0);
 	g_assert (nm_setting_connection_get_autoconnect (s_con));
 
@@ -178,6 +180,7 @@ test_read_ibft_vlan (void)
 	s_con = nm_connection_get_setting_connection (connection);
 	g_assert (s_con);
 	g_assert_cmpstr (nm_setting_connection_get_connection_type (s_con), ==, NM_SETTING_VLAN_SETTING_NAME);
+	g_assert_cmpstr (nm_setting_connection_get_interface_name (s_con), ==, NULL);
 
 	/* ===== WIRED SETTING ===== */
 	s_wired = nm_connection_get_setting_wired (connection);