mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-03 12:44:45 +02:00
cmake.yml: fix error and run tests with ctest
This commit is contained in:
committed by
Daniel Pouzzner
parent
825ca22bd8
commit
7380ec68bb
@@ -3280,7 +3280,7 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
|
||||
#ifdef WOLFSSL_SRTP
|
||||
if (dtlsSrtpProfiles != NULL) {
|
||||
if (wolfSSL_CTX_set_tlsext_use_srtp(ctx, dtlsSrtpProfiles)
|
||||
!= WOLFSSL_SUCCESS) {
|
||||
!= 0) {
|
||||
err_sys("unable to set DTLS SRTP profile");
|
||||
}
|
||||
}
|
||||
|
@@ -2680,7 +2680,7 @@ THREAD_RETURN WOLFSSL_THREAD server_test(void* args)
|
||||
#ifdef WOLFSSL_SRTP
|
||||
if (dtlsSrtpProfiles != NULL) {
|
||||
if (wolfSSL_CTX_set_tlsext_use_srtp(ctx, dtlsSrtpProfiles)
|
||||
!= WOLFSSL_SUCCESS) {
|
||||
!= 0) {
|
||||
err_sys_ex(catastrophic, "unable to set DTLS SRTP profile");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user