diff options
Diffstat (limited to 'src/charon-tkm/tests')
-rw-r--r-- | src/charon-tkm/tests/diffie_hellman_tests.c | 2 | ||||
-rw-r--r-- | src/charon-tkm/tests/keymat_tests.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/charon-tkm/tests/diffie_hellman_tests.c b/src/charon-tkm/tests/diffie_hellman_tests.c index 89658a770..5ef6f41ab 100644 --- a/src/charon-tkm/tests/diffie_hellman_tests.c +++ b/src/charon-tkm/tests/diffie_hellman_tests.c @@ -40,7 +40,7 @@ START_TEST(test_dh_get_my_pubvalue) fail_if(!dh, "Unable to create DH"); chunk_t value; - dh->dh.get_my_public_value(&dh->dh, &value); + ck_assert(dh->dh.get_my_public_value(&dh->dh, &value)); dh->dh.destroy(&dh->dh); fail_if(value.ptr == NULL, "Pubvalue is NULL"); diff --git a/src/charon-tkm/tests/keymat_tests.c b/src/charon-tkm/tests/keymat_tests.c index 1982671d3..c1f3872f7 100644 --- a/src/charon-tkm/tests/keymat_tests.c +++ b/src/charon-tkm/tests/keymat_tests.c @@ -53,7 +53,7 @@ START_TEST(test_derive_ike_keys) /* Use the same pubvalue for both sides */ chunk_t pubvalue; - dh->dh.get_my_public_value(&dh->dh, &pubvalue); + ck_assert(dh->dh.get_my_public_value(&dh->dh, &pubvalue)); dh->dh.set_other_public_value(&dh->dh, pubvalue); fail_unless(keymat->keymat_v2.derive_ike_keys(&keymat->keymat_v2, proposal, |