Reduce the level of logging used in tests

This should avoid running into a bug with printf format specifiers one
windows.

It's also a logical move for actual tests: I used the highest debug
level for discovery, but we don't need that all the time.

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard 2025-03-05 11:53:09 +01:00
parent adad47634e
commit 051b1e21d6
2 changed files with 8 additions and 4 deletions

View File

@ -92,7 +92,7 @@ static void ssl_tls13_select_ciphersuite(
return;
}
MBEDTLS_SSL_DEBUG_MSG(2, ("No matched ciphersuite, psk_ciphersuite_id=%x, psk_hash_alg=%lx",
MBEDTLS_SSL_DEBUG_MSG(1, ("No matched ciphersuite, psk_ciphersuite_id=%x, psk_hash_alg=%lx",
(unsigned) psk_ciphersuite_id,
(unsigned long) psk_hash_alg));
}

View File

@ -5070,7 +5070,7 @@ void inject_client_content_on_the_wire(int pk_alg,
srv_pattern.pattern = log_pattern;
options.srv_log_obj = &srv_pattern;
options.srv_log_fun = mbedtls_test_ssl_log_analyzer;
mbedtls_debug_set_threshold(5);
mbedtls_debug_set_threshold(1);
options.pk_alg = pk_alg;
@ -5102,7 +5102,11 @@ void inject_client_content_on_the_wire(int pk_alg,
ret = mbedtls_ssl_handshake_step(&server.ssl);
} while (ret == 0 && server.ssl.state == state);
TEST_EQUAL(ret, expected_ret);
/* If we're expected to suceeed and we do, that's enough.
* If we're expected to fail, also check it was in the expected way. */
if (expected_ret != 0) {
TEST_EQUAL(srv_pattern.counter, 1);
}
exit:
mbedtls_test_free_handshake_options(&options);
@ -5147,7 +5151,7 @@ void send_large_fragmented_hello(int hs_len_int, int first_frag_content_len_int,
srv_pattern.pattern = log_pattern;
options.srv_log_obj = &srv_pattern;
options.srv_log_fun = mbedtls_test_ssl_log_analyzer;
mbedtls_debug_set_threshold(5);
mbedtls_debug_set_threshold(1);
// Does't really matter but we want to know to declare dependencies.
options.pk_alg = MBEDTLS_PK_ECDSA;