diff options
author | tb <> | 2022-05-14 17:58:11 +0000 |
---|---|---|
committer | tb <> | 2022-05-14 17:58:11 +0000 |
commit | 45cb2e5d0a0ac3d63c3bf889071871b8de1f414e (patch) | |
tree | 3d15fec397303a0527e487eceaa472ea6559e704 /src | |
parent | 389817c1dca105596f54377f5087182cb8ee5c7c (diff) | |
download | openbsd-45cb2e5d0a0ac3d63c3bf889071871b8de1f414e.tar.gz openbsd-45cb2e5d0a0ac3d63c3bf889071871b8de1f414e.tar.bz2 openbsd-45cb2e5d0a0ac3d63c3bf889071871b8de1f414e.zip |
Add the two length tests. Can't currently run them because we need an
echo server.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 83822a3be3..0fe647abb6 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.44 2022/04/21 18:01:09 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.45 2022/05/14 17:58:11 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -298,6 +298,9 @@ tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [ | |||
298 | # need server to react to HTTP GET for /keyupdate | 298 | # need server to react to HTTP GET for /keyupdate |
299 | Test("test-tls13-keyupdate-from-server.py"), | 299 | Test("test-tls13-keyupdate-from-server.py"), |
300 | 300 | ||
301 | # needs an echo server | ||
302 | Test("test-tls13-lengths.py"), | ||
303 | |||
301 | # Weird test: tests servers that don't support 1.3 | 304 | # Weird test: tests servers that don't support 1.3 |
302 | Test("test-tls13-non-support.py"), | 305 | Test("test-tls13-non-support.py"), |
303 | 306 | ||
@@ -557,6 +560,8 @@ tls12_unsupported_tests = TestGroup("TLSv1.2 for unsupported features", [ | |||
557 | Test("test-record-size-limit.py"), | 560 | Test("test-record-size-limit.py"), |
558 | # expects the server to send the heartbeat extension | 561 | # expects the server to send the heartbeat extension |
559 | Test("test-heartbeat.py"), | 562 | Test("test-heartbeat.py"), |
563 | # needs an echo server | ||
564 | Test("test-lengths.py"), | ||
560 | ]) | 565 | ]) |
561 | 566 | ||
562 | # These tests take a ton of time to fail against an 1.3 server, | 567 | # These tests take a ton of time to fail against an 1.3 server, |