Merge pull request #8304 from SparkiDev/regression_fixes_15

Regression testing: fixes
This commit is contained in:
JacobBarthelmeh
2024-12-20 11:29:15 -07:00
committed by GitHub
3 changed files with 6 additions and 9 deletions

View File

@@ -12672,15 +12672,9 @@ err:
static void wolfssl_x509_name_entry_set(WOLFSSL_X509_NAME_ENTRY* ne,
int nid, int type, const unsigned char *data, int dataSz)
{
WOLFSSL_ASN1_OBJECT* object;
ne->nid = nid;
/* Reuse the object if already available. */
object = wolfSSL_OBJ_nid2obj_ex(nid, ne->object);
if (object != NULL) {
/* Set the object when no error. */
ne->object = object;
}
ne->object = wolfSSL_OBJ_nid2obj_ex(nid, ne->object);
if (ne->value == NULL) {
ne->value = wolfSSL_ASN1_STRING_type_new(type);
}

View File

@@ -72889,6 +72889,9 @@ static int test_wolfSSL_GENERAL_NAME_print(void)
wolfSSL_ASN1_STRING_free(gn->d.ia5);
gn->d.registeredID = ridObj;
}
else {
wolfSSL_ASN1_OBJECT_free(ridObj);
}
ExpectIntEQ(GENERAL_NAME_print(out, gn), 1);
XMEMSET(outbuf,0,sizeof(outbuf));
ExpectIntGT(BIO_read(out, outbuf, sizeof(outbuf)), 0);
@@ -101583,7 +101586,7 @@ TEST_CASE testCases[] = {
TEST_DECL(test_wolfSSL_X509_STORE_CTX),
TEST_DECL(test_wolfSSL_X509_STORE_CTX_ex),
TEST_DECL(test_X509_STORE_untrusted),
#if defined(OPENSSL_ALL)
#if defined(OPENSSL_ALL) && !defined(NO_RSA)
TEST_DECL(test_X509_STORE_InvalidCa),
#endif
TEST_DECL(test_wolfSSL_X509_STORE_CTX_trusted_stack_cleanup),

View File

@@ -12864,7 +12864,7 @@ static wc_test_ret_t aes_cbc_oneshot_test(void)
}
#endif
#if defined(WOLFSSL_AES_COUNTER) && defined(HAVE_AES_DECRYPT)
#if defined(WOLFSSL_AES_COUNTER)
WOLFSSL_TEST_SUBROUTINE wc_test_ret_t aes_ctr_test(void)
{
#if defined(WOLFSSL_SMALL_STACK) && !defined(WOLFSSL_NO_MALLOC)