Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Nov 28, 2024
1 parent 9b84984 commit cdc3265
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .builder/actions/tls_server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,11 @@ def run(self, env):

p2 = subprocess.Popen(["openssl.exe", "s_client",
"-connect", "127.0.0.1:59443",
"-key", "unittests.key",
"-cert", "unittests.crt",
"-CAfile", "ca_root.crt",
"-key", "server.key",
"-cert", "server.crt",
"-CAfile", "server_chain.crt",
"-debug", "-state",
"-servername", "localhost",
"-tls1_3",
], cwd=dir, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
p2.poll()
print("client Return code is {}".format(p2.returncode))
Expand Down

0 comments on commit cdc3265

Please sign in to comment.