diff options
author | tb <> | 2022-07-18 08:36:47 +0000 |
---|---|---|
committer | tb <> | 2022-07-18 08:36:47 +0000 |
commit | b3809e54385d61923e6670c241de265f478cdb75 (patch) | |
tree | e2adddaaee8bfb636184230994d103d8d7d731f6 /src/regress/lib/libssl | |
parent | 65b8ee53a9bd832506f5237be581adae68cf2f98 (diff) | |
download | openbsd-b3809e54385d61923e6670c241de265f478cdb75.tar.gz openbsd-b3809e54385d61923e6670c241de265f478cdb75.tar.bz2 openbsd-b3809e54385d61923e6670c241de265f478cdb75.zip |
Avoid sending the QUIC transport parameters extension now that we
send an unsupported extension alert.
Noted by anton
Diffstat (limited to 'src/regress/lib/libssl')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 0fe647abb6..821fd055a9 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.45 2022/05/14 17:58:11 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.46 2022/07/18 08:36:47 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -175,7 +175,7 @@ tls13_tests = TestGroup("TLSv1.3 tests", [ | |||
175 | Test("test-tls13-legacy-version.py"), | 175 | Test("test-tls13-legacy-version.py"), |
176 | Test("test-tls13-nociphers.py"), | 176 | Test("test-tls13-nociphers.py"), |
177 | Test("test-tls13-record-padding.py"), | 177 | Test("test-tls13-record-padding.py"), |
178 | Test("test-tls13-shuffled-extentions.py"), | 178 | Test("test-tls13-shuffled-extentions.py", [ "--exc", "57" ]), |
179 | Test("test-tls13-zero-content-type.py"), | 179 | Test("test-tls13-zero-content-type.py"), |
180 | 180 | ||
181 | # The skipped tests fail due to a bug in BIO_gets() which masks the retry | 181 | # The skipped tests fail due to a bug in BIO_gets() which masks the retry |
@@ -209,7 +209,7 @@ tls13_slow_tests = TestGroup("slow TLSv1.3 tests", [ | |||
209 | # uncompressed point format. Exclude this extension type from the test. | 209 | # uncompressed point format. Exclude this extension type from the test. |
210 | Test( | 210 | Test( |
211 | "test-tls13-large-number-of-extensions.py", | 211 | "test-tls13-large-number-of-extensions.py", |
212 | tls13_args = ["--exc", "11"], | 212 | tls13_args = ["--exc", "11", "--exc", "57"], |
213 | ), | 213 | ), |
214 | ]) | 214 | ]) |
215 | 215 | ||
@@ -413,7 +413,7 @@ tls12_slow_tests = TestGroup("slow TLSv1.2 tests", [ | |||
413 | Test("test-dhe-no-shared-secret-padding.py", tls12_exclude_legacy_protocols), | 413 | Test("test-dhe-no-shared-secret-padding.py", tls12_exclude_legacy_protocols), |
414 | Test("test-ecdhe-padded-shared-secret.py", tls12_exclude_legacy_protocols), | 414 | Test("test-ecdhe-padded-shared-secret.py", tls12_exclude_legacy_protocols), |
415 | Test("test-ecdhe-rsa-key-share-random.py", tls12_exclude_legacy_protocols), | 415 | Test("test-ecdhe-rsa-key-share-random.py", tls12_exclude_legacy_protocols), |
416 | Test("test-large-hello.py"), | 416 | Test("test-large-hello.py", [ "-m", "58" ]), |
417 | ]) | 417 | ]) |
418 | 418 | ||
419 | tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ | 419 | tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ |