diff options
author | tb <> | 2021-04-13 15:53:20 +0000 |
---|---|---|
committer | tb <> | 2021-04-13 15:53:20 +0000 |
commit | 445aea1827ed13d166b29a49eb8066264a1f7512 (patch) | |
tree | e527370e0572eb50327941007671c7b122c59110 /src | |
parent | 4d23239f46cb2a8019cfac97d41e9ab70e754765 (diff) | |
download | openbsd-445aea1827ed13d166b29a49eb8066264a1f7512.tar.gz openbsd-445aea1827ed13d166b29a49eb8066264a1f7512.tar.bz2 openbsd-445aea1827ed13d166b29a49eb8066264a1f7512.zip |
with new defaults, test-fuzzed-plaintext.py is no longer slow
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py index a4df827d04..2d38946737 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.30 2021/04/13 15:45:22 tb Exp $ | 1 | # $OpenBSD: tlsfuzzer.py,v 1.31 2021/04/13 15:53: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 | # |
@@ -335,6 +335,7 @@ tls12_tests = TestGroup("TLSv1.2 tests", [ | |||
335 | Test("test-fuzzed-ciphertext.py"), | 335 | Test("test-fuzzed-ciphertext.py"), |
336 | Test("test-fuzzed-finished.py"), | 336 | Test("test-fuzzed-finished.py"), |
337 | Test("test-fuzzed-padding.py"), | 337 | Test("test-fuzzed-padding.py"), |
338 | Test("test-fuzzed-plaintext.py"), # fails once in a while | ||
338 | Test("test-hello-request-by-client.py"), | 339 | Test("test-hello-request-by-client.py"), |
339 | Test("test-invalid-cipher-suites.py"), | 340 | Test("test-invalid-cipher-suites.py"), |
340 | Test("test-invalid-content-type.py"), | 341 | Test("test-invalid-content-type.py"), |
@@ -388,8 +389,6 @@ tls12_slow_tests = TestGroup("slow TLSv1.2 tests", [ | |||
388 | Test("test-dhe-no-shared-secret-padding.py", tls12_exclude_legacy_protocols), | 389 | Test("test-dhe-no-shared-secret-padding.py", tls12_exclude_legacy_protocols), |
389 | Test("test-ecdhe-padded-shared-secret.py", tls12_exclude_legacy_protocols), | 390 | Test("test-ecdhe-padded-shared-secret.py", tls12_exclude_legacy_protocols), |
390 | Test("test-ecdhe-rsa-key-share-random.py", tls12_exclude_legacy_protocols), | 391 | Test("test-ecdhe-rsa-key-share-random.py", tls12_exclude_legacy_protocols), |
391 | # This test has some failures once in a while. | ||
392 | Test("test-fuzzed-plaintext.py"), | ||
393 | ]) | 392 | ]) |
394 | 393 | ||
395 | tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ | 394 | tls12_failing_tests = TestGroup("failing TLSv1.2 tests", [ |