diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-03-26 22:35:18 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-03-26 22:35:18 +0000 |
commit | 57c4e93700c7a29cd5359b60a40ef73b779a55c5 (patch) | |
tree | 8a376eda42d7a8fe4bcca767db79cefcf788e514 /regress | |
parent | 15720e6dc1b666fe98d2d65fed2588d47ad2da04 (diff) |
Add test-sig-algs-renegotiation-resumption.py
This test currently fails but may soon be fixed.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index e9263231a81..9c2f28f2934 100644 --- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py +++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py @@ -1,4 +1,4 @@ -# $OpenBSD: tlsfuzzer.py,v 1.24 2021/03/20 12:17:45 tb Exp $ +# $OpenBSD: tlsfuzzer.py,v 1.25 2021/03/26 22:35:17 tb Exp $ # # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> # @@ -526,6 +526,10 @@ tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ # 'rsa_pss_pss_sha512 only' Test("test-sig-algs.py"), + # Without --sig-algs-drop-ok, two tests fail since we do not currently + # implement the signature_algorithms_cert extension (although we MUST). + Test("test-sig-algs-renegotiation-resumption.py", ["--sig-algs-drop-ok"]), + # 13 failures: # 'duplicated n non-rsa schemes' for n in 202 2342 8119 23741 32744 # 'empty list of signature methods' |