summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-05-14 17:58:12 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-05-14 17:58:12 +0000
commit21923189f10931f553e89f8374124dd59a85f0a5 (patch)
tree4a6205b640558bc31da2c9534f5ae46dabeed333 /regress/lib
parent75dadf6621499bb5eccbdd3882df9b6fae87277e (diff)
Add the two length tests. Can't currently run them because we need an
echo server.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libssl/tlsfuzzer/tlsfuzzer.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
index 83822a3be3f..0fe647abb6e 100644
--- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
+++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
@@ -1,4 +1,4 @@
-# $OpenBSD: tlsfuzzer.py,v 1.44 2022/04/21 18:01:09 tb Exp $
+# $OpenBSD: tlsfuzzer.py,v 1.45 2022/05/14 17:58:11 tb Exp $
#
# Copyright (c) 2020 Theo Buehler <tb@openbsd.org>
#
@@ -298,6 +298,9 @@ tls13_unsupported_tests = TestGroup("TLSv1.3 tests for unsupported features", [
# need server to react to HTTP GET for /keyupdate
Test("test-tls13-keyupdate-from-server.py"),
+ # needs an echo server
+ Test("test-tls13-lengths.py"),
+
# Weird test: tests servers that don't support 1.3
Test("test-tls13-non-support.py"),
@@ -557,6 +560,8 @@ tls12_unsupported_tests = TestGroup("TLSv1.2 for unsupported features", [
Test("test-record-size-limit.py"),
# expects the server to send the heartbeat extension
Test("test-heartbeat.py"),
+ # needs an echo server
+ Test("test-lengths.py"),
])
# These tests take a ton of time to fail against an 1.3 server,