diff options
| author | tb <> | 2022-07-18 08:36:47 +0000 |
|---|---|---|
| committer | tb <> | 2022-07-18 08:36:47 +0000 |
| commit | 51ce42afe30a149161bcd2da16cbdc2eb09298c1 (patch) | |
| tree | e2adddaaee8bfb636184230994d103d8d7d731f6 /src | |
| parent | 930950d1dfda4d98423e9be752960b491c1737b7 (diff) | |
| download | openbsd-51ce42afe30a149161bcd2da16cbdc2eb09298c1.tar.gz openbsd-51ce42afe30a149161bcd2da16cbdc2eb09298c1.tar.bz2 openbsd-51ce42afe30a149161bcd2da16cbdc2eb09298c1.zip | |
Avoid sending the QUIC transport parameters extension now that we
send an unsupported extension alert.
Noted by anton
Diffstat (limited to 'src')
| -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", [ |
