summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-06-02 19:51:05 +0200
committerThomas Haller <thaller@redhat.com>2017-06-02 20:21:11 +0200
commit2574393f08600362e013f58df3e2383a2dac4ec5 (patch)
tree296db0c8d05d2cde1e8944c55d9a6c79dd7d3786
parente984d9eb36f7838df58c0606bd00efc10730d329 (diff)
downloadNetworkManager-2574393f08600362e013f58df3e2383a2dac4ec5.tar.gz
supplicant/tests: work-around coverify false-positive in test
NetworkManager-1.8.0/src/supplicant/tests/test-supplicant-config.c:528: check_return: Calling "nm_setting_802_1x_set_ca_cert" without checking return value (as is done elsewhere 13 out of 16 times). (cherry picked from commit 70879568704bd88438d34dd4f309ff6a641c56a3)
-rw-r--r--src/supplicant/tests/test-supplicant-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supplicant/tests/test-supplicant-config.c b/src/supplicant/tests/test-supplicant-config.c
index fd91e92177..ef6f2c6414 100644
--- a/src/supplicant/tests/test-supplicant-config.c
+++ b/src/supplicant/tests/test-supplicant-config.c
@@ -525,7 +525,7 @@ test_wifi_eap (void)
nm_connection_add_setting (connection, NM_SETTING (s_8021x));
nm_setting_802_1x_add_eap_method (s_8021x, "tls");
nm_setting_802_1x_set_client_cert (s_8021x, TEST_CERT_DIR "/test-cert.p12", NM_SETTING_802_1X_CK_SCHEME_PATH, NULL, NULL);
- nm_setting_802_1x_set_ca_cert (s_8021x, TEST_CERT_DIR "/test-ca-cert.pem", NM_SETTING_802_1X_CK_SCHEME_PATH, NULL, NULL);
+ g_assert (nm_setting_802_1x_set_ca_cert (s_8021x, TEST_CERT_DIR "/test-ca-cert.pem", NM_SETTING_802_1X_CK_SCHEME_PATH, NULL, NULL));
nm_setting_802_1x_set_private_key (s_8021x, TEST_CERT_DIR "/test-cert.p12", NULL, NM_SETTING_802_1X_CK_SCHEME_PATH, NULL, NULL);
/* IP4 setting */