summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2026-07-26 12:53:11 +0000
committertb <>2026-07-26 12:53:11 +0000
commitb131b1c19e4e1fa19f288317fbce84220ac94029 (patch)
tree7f3a01c5b14caf75cc40637f928d4cb67b2d8074 /src
parentfa5842562dabbfa3efae8b119a6578ef2be826a6 (diff)
downloadopenbsd-b131b1c19e4e1fa19f288317fbce84220ac94029.tar.gz
openbsd-b131b1c19e4e1fa19f288317fbce84220ac94029.tar.bz2
openbsd-b131b1c19e4e1fa19f288317fbce84220ac94029.zip
tlsfuzzer: whitespace tweaks
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py b/src/regress/lib/libssl/tlsfuzzer/tlsfuzzer.py
index 123c32bfcb..d7afd5f4a7 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.58 2026/07/26 12:43:39 tb Exp $ 1# $OpenBSD: tlsfuzzer.py,v 1.59 2026/07/26 12:53: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#
@@ -53,7 +53,8 @@ class Test:
53 ) 53 )
54 54
55class TestGroup: 55class TestGroup:
56 """ A group of Test objects to be run by TestRunner.""" 56 """A group of Test objects to be run by TestRunner."""
57
57 def __init__(self, title="Tests", tests=[]): 58 def __init__(self, title="Tests", tests=[]):
58 self.title = title 59 self.title = title
59 self.tests = tests 60 self.tests = tests
@@ -649,7 +650,7 @@ failing_groups = [
649] 650]
650 651
651class TestRunner: 652class TestRunner:
652 """ Runs the given tests against a server and displays stats. """ 653 """Runs the given tests against a server and displays stats."""
653 654
654 def __init__( 655 def __init__(
655 self, timing=False, verbose=False, host="localhost", port=4433, 656 self, timing=False, verbose=False, host="localhost", port=4433,
@@ -743,7 +744,7 @@ class TestRunner:
743 print('\n'.join(self.missing)) 744 print('\n'.join(self.missing))
744 745
745class TlsServer: 746class TlsServer:
746 """ Spawns an s_server listening on localhost:port if necessary. """ 747 """Spawns an s_server listening on localhost:port if necessary."""
747 748
748 def __init__(self, host="localhost", port=4433): 749 def __init__(self, host="localhost", port=4433):
749 self.spawn = True 750 self.spawn = True