diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 6f3bd9d8bf..e506c3ebce 100644 --- a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py +++ b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: tlsfuzzer.py,v 1.38 2021/04/14 14:54:30 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.39 2021/04/23 21:01:45 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -390,6 +390,12 @@ tls12_tests = TestGroup("TLSv1.2 tests", [ | |||
390 | "-X", substitute_alert("illegal_parameter", "decode_error"), | 390 | "-X", substitute_alert("illegal_parameter", "decode_error"), |
391 | ]), | 391 | ]), |
392 | 392 | ||
393 | # Skip extended_master_secret test. Since we don't support this | ||
394 | # extension, we don't notice that it was dropped. | ||
395 | Test("test-renegotiation-changed-clienthello.py", [ | ||
396 | "-e", "drop extended_master_secret in renegotiation", | ||
397 | ]), | ||
398 | |||
393 | # Without --sig-algs-drop-ok, two tests fail since we do not currently | 399 | # Without --sig-algs-drop-ok, two tests fail since we do not currently |
394 | # implement the signature_algorithms_cert extension (although we MUST). | 400 | # implement the signature_algorithms_cert extension (although we MUST). |
395 | Test("test-sig-algs-renegotiation-resumption.py", ["--sig-algs-drop-ok"]), | 401 | Test("test-sig-algs-renegotiation-resumption.py", ["--sig-algs-drop-ok"]), |