Skip to content

Commit 16ec3e5

Browse files
committed
Jenkins fixes
1 parent 433f3ae commit 16ec3e5

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

src/internal.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3225,6 +3225,23 @@ void InitSuites(Suites* suites, ProtocolVersion pv, int keySz, word16 haveRSA,
32253225
}
32263226
#endif
32273227

3228+
(void)tls; /* shut up compiler */
3229+
(void)tls1_2;
3230+
(void)dtls;
3231+
(void)haveDH;
3232+
(void)havePSK;
3233+
(void)haveStaticRSA;
3234+
(void)haveStaticECC;
3235+
(void)haveECC;
3236+
(void)haveECDSAsig;
3237+
(void)side;
3238+
(void)haveRSA; /* some builds won't read */
3239+
(void)haveRSAsig; /* non ecc builds won't read */
3240+
(void)haveAnon; /* anon ciphers optional */
3241+
(void)haveNull;
3242+
(void)haveFalconSig;
3243+
(void)haveDilithiumSig;
3244+
32283245
if (suites == NULL) {
32293246
WOLFSSL_MSG("InitSuites pointer error");
32303247
return;

tests/api.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40496,7 +40496,8 @@ static int test_wolfSSL_curves_mismatch_ctx_ready(WOLFSSL_CTX* ctx)
4049640496
"TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES128-GCM-SHA256:"
4049740497
"ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:"
4049840498
"ECDHE-ECDSA-AES128-GCM-SHA256:"
40499-
"ECDHE-RSA-AES128-GCM-SHA256");
40499+
"ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-CHACHA20-POLY1305:"
40500+
"ECDHE-ECDSA-CHACHA20-POLY1305");
4050040501

4050140502
counter++;
4050240503
return EXPECT_RESULT();

0 commit comments

Comments
 (0)