summaryrefslogtreecommitdiffstats
path: root/regress/lib
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2020-05-24 10:35:57 +0000
committertb <tb@openbsd.org>2020-05-24 10:35:57 +0000
commitf501c9917527d63230a2d35a02aa001d39753f1d (patch)
treea4d50bd099145854ea8aa0e871a33f3290ece9d6 /regress/lib
parentGive control code its own state struct. (diff)
downloadwireguard-openbsd-f501c9917527d63230a2d35a02aa001d39753f1d.tar.xz
wireguard-openbsd-f501c9917527d63230a2d35a02aa001d39753f1d.zip
The version detection doesn't work on bluhm's test machine, causing
the test to fail. Neuter it for now and just assume we do TLSv1.3. I have been intending to purge this version detection hack once I'm sure we can leave the 1.3 server enabled but I'll leave it here for now.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libssl/tlsfuzzer/tlsfuzzer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
index 963115217cf..df965467d67 100644
--- a/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
+++ b/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
@@ -1,4 +1,4 @@
-# $OpenBSD: tlsfuzzer.py,v 1.2 2020/05/21 19:08:32 tb Exp $
+# $OpenBSD: tlsfuzzer.py,v 1.3 2020/05/24 10:35:57 tb Exp $
#
# Copyright (c) 2020 Theo Buehler <tb@openbsd.org>
#
@@ -150,7 +150,7 @@ tls13_slow_failing_tests = TestGroup("slow, failing TLSv1.3 tests", [
# 'post-handshake KeyUpdate msg with update_not_request'
# 'post-handshake KeyUpdate msg with update_request'
Test("test-tls13-keyupdate.py"),
-
+
Test("test-tls13-symetric-ciphers.py"), # unexpected message from peer
# 70 fail and 644 pass. For some reason the tests expect a decode_error
@@ -583,7 +583,7 @@ class TlsServer:
)
# Check whether the server talks TLSv1.3
- self.has_tls1_3 = subprocess.run(
+ self.has_tls1_3 = True or subprocess.run(
[
"nc",
"-c",