diff options
author | 2021-03-26 22:35:17 +0000 | |
---|---|---|
committer | 2021-03-26 22:35:17 +0000 | |
commit | 48eb9341f2a2c6b9c06913ea1a3b5489212973d6 (patch) | |
tree | 815a6631a0b1fbaf6f30804d54c7553043331fd5 | |
parent | Initialize error variable in dtread(). (diff) | |
download | wireguard-openbsd-48eb9341f2a2c6b9c06913ea1a3b5489212973d6.tar.xz wireguard-openbsd-48eb9341f2a2c6b9c06913ea1a3b5489212973d6.zip |
Add test-sig-algs-renegotiation-resumption.py
This test currently fails but may soon be fixed.
-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' |