mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
fix unused variable in test case from Jenkins test
This commit is contained in:
@ -29454,15 +29454,12 @@ static void test_wolfSSL_a2i_ASN1_INTEGER(void)
|
|||||||
ASN1_INTEGER* ai;
|
ASN1_INTEGER* ai;
|
||||||
char buf[] = "123456\n12345\n112345678912345678901234567890\n";
|
char buf[] = "123456\n12345\n112345678912345678901234567890\n";
|
||||||
char tmp[1024];
|
char tmp[1024];
|
||||||
int bufSz, tmpSz;
|
int tmpSz;
|
||||||
char* pt;
|
|
||||||
|
|
||||||
const char expected1[] = "123456";
|
const char expected1[] = "123456";
|
||||||
const char expected2[] = "112345678912345678901234567890";
|
const char expected2[] = "112345678912345678901234567890";
|
||||||
|
|
||||||
printf(testingFmt, "test_wolfSSL_a2i_ASN1_INTEGER()");
|
printf(testingFmt, "test_wolfSSL_a2i_ASN1_INTEGER()");
|
||||||
pt = (char*)buf;
|
|
||||||
bufSz = sizeof(buf);
|
|
||||||
|
|
||||||
AssertNotNull(bio = BIO_new_mem_buf(buf, -1));
|
AssertNotNull(bio = BIO_new_mem_buf(buf, -1));
|
||||||
AssertNotNull(out = BIO_new(BIO_s_mem()));
|
AssertNotNull(out = BIO_new(BIO_s_mem()));
|
||||||
|
Reference in New Issue
Block a user