TEST_true_or_end
TEST_true_or_end(create_ssl_ctx_pair(NULL, TLS_server_method(),
TEST_true_or_end(create_ssl_objects(server_ctx, client_ctx,
TEST_true_or_end(create_ssl_ctx_pair(NULL, TLS_server_method(),
TEST_true_or_end(SSL_CTX_set1_groups_list(client_ctx,
TEST_true_or_end(SSL_CTX_set1_groups_list(server_ctx,
TEST_true_or_end(SSL_CTX_set_min_proto_version(client_ctx, TLS1_3_VERSION));
TEST_true_or_end(SSL_CTX_set_min_proto_version(server_ctx, TLS1_3_VERSION));
TEST_true_or_end(SSL_set1_groups_list(clientssl, current_test_vector->client_groups));
TEST_true_or_end(SSL_set1_groups_list(serverssl, current_test_vector->server_groups));
TEST_true_or_end(SSL_set_min_proto_version(clientssl, TLS1_3_VERSION));
TEST_true_or_end(SSL_set_min_proto_version(serverssl, TLS1_3_VERSION));
TEST_true_or_end(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE));