diff options
author | tb <> | 2023-01-06 19:25:20 +0000 |
---|---|---|
committer | tb <> | 2023-01-06 19:25:20 +0000 |
commit | d810d43eab6a25282d60a2ebbbc6af5d5f489a2f (patch) | |
tree | a61a5df729a068d94569deedb3c703a35cb2e7ec | |
parent | 2feadbb4023f1dfdb2ca4d0bbf07c8bb21440b19 (diff) | |
download | openbsd-d810d43eab6a25282d60a2ebbbc6af5d5f489a2f.tar.gz openbsd-d810d43eab6a25282d60a2ebbbc6af5d5f489a2f.tar.bz2 openbsd-d810d43eab6a25282d60a2ebbbc6af5d5f489a2f.zip |
tlsfuzzer: hook up new connection abort tests while skipping the NST
tests for TLSv1.3 since that's not currently handled.
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index 0cbd90c2e2..e7f2006a57 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.47 2022/07/18 09:15:08 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.48 2023/01/06 19:25:20 tb Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | # Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | # | 4 | # |
@@ -187,6 +187,9 @@ tls13_tests = TestGroup("TLSv1.3 tests", [ | |||
187 | "-e", "zero-length app data with large padding", | 187 | "-e", "zero-length app data with large padding", |
188 | "-e", "zero-length app data with padding", | 188 | "-e", "zero-length app data with padding", |
189 | ]), | 189 | ]), |
190 | |||
191 | # We don't currently handle NSTs | ||
192 | Test("test-tls13-connection-abort.py", ["-e", "After NewSessionTicket"]), | ||
190 | ]) | 193 | ]) |
191 | 194 | ||
192 | # Tests that take a lot of time (> ~30s on an x280) | 195 | # Tests that take a lot of time (> ~30s on an x280) |
@@ -335,6 +338,7 @@ tls12_tests = TestGroup("TLSv1.2 tests", [ | |||
335 | Test("test-TLSv1_2-rejected-without-TLSv1_2.py"), | 338 | Test("test-TLSv1_2-rejected-without-TLSv1_2.py"), |
336 | Test("test-aes-gcm-nonces.py"), | 339 | Test("test-aes-gcm-nonces.py"), |
337 | Test("test-chacha20.py"), | 340 | Test("test-chacha20.py"), |
341 | Test("test-connection-abort.py"), | ||
338 | Test("test-conversation.py"), | 342 | Test("test-conversation.py"), |
339 | Test("test-cve-2016-2107.py"), | 343 | Test("test-cve-2016-2107.py"), |
340 | Test("test-cve-2016-6309.py"), | 344 | Test("test-cve-2016-6309.py"), |