remove uint from test case and put variable declaration at top of scope

This commit is contained in:
Jacob Barthelmeh
2022-04-29 10:40:44 -06:00
parent 38c01b9d9f
commit 9d7a02b28e

View File

@@ -34252,43 +34252,45 @@ static void test_wolfSSL_Tls13_Key_Logging_test(void)
#endif #endif
/* check if the keylog file exists */ /* check if the keylog file exists */
{
char buff[300] = {0}; char buff[300] = {0};
int found[4] = {0}; int found[4] = {0};
int numfnd = 0;
int i;
fp = XFOPEN("./MyKeyLog.txt", "r"); fp = XFOPEN("./MyKeyLog.txt", "r");
AssertNotNull(fp); AssertNotNull(fp);
while(XFGETS( buff, (int)sizeof(buff),fp) != NULL ) { while (XFGETS( buff, (int)sizeof(buff),fp) != NULL ) {
if(0 == strncmp(buff,"CLIENT_HANDSHAKE_TRAFFIC_SECRET ", if (0 == strncmp(buff,"CLIENT_HANDSHAKE_TRAFFIC_SECRET ",
sizeof("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")-1)) { sizeof("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")-1)) {
found[0] = 1; found[0] = 1;
continue; continue;
} }
else if(0 == strncmp(buff,"SERVER_HANDSHAKE_TRAFFIC_SECRET ", else if (0 == strncmp(buff,"SERVER_HANDSHAKE_TRAFFIC_SECRET ",
sizeof("SERVER_HANDSHAKE_TRAFFIC_SECRET ")-1)) { sizeof("SERVER_HANDSHAKE_TRAFFIC_SECRET ")-1)) {
found[1] = 1; found[1] = 1;
continue; continue;
} }
else if(0 == strncmp(buff,"CLIENT_TRAFFIC_SECRET_0 ", else if (0 == strncmp(buff,"CLIENT_TRAFFIC_SECRET_0 ",
sizeof("CLIENT_TRAFFIC_SECRET_0 ")-1)) { sizeof("CLIENT_TRAFFIC_SECRET_0 ")-1)) {
found[2] = 1; found[2] = 1;
continue; continue;
} }
else if(0 == strncmp(buff,"SERVER_TRAFFIC_SECRET_0 ", else if (0 == strncmp(buff,"SERVER_TRAFFIC_SECRET_0 ",
sizeof("SERVER_TRAFFIC_SECRET_0 ")-1)) { sizeof("SERVER_TRAFFIC_SECRET_0 ")-1)) {
found[3] = 1; found[3] = 1;
continue; continue;
} }
} }
XFCLOSE(fp); XFCLOSE(fp);
int numfnd = 0; for (i = 0; i < 4; i++) {
for( uint i = 0; i < 4; i++) {
if( found[i] != 0) if( found[i] != 0)
numfnd++; numfnd++;
} }
AssertIntEQ( numfnd,4 ); AssertIntEQ(numfnd, 4);
}
printf(resultFmt, passed); printf(resultFmt, passed);