Changeset 3deb86e in mod_gnutls
- Timestamp:
- Jan 4, 2020, 4:24:45 AM (3 years ago)
- Branches:
- asyncio, main, master, proxy-ticket
- Children:
- 190d459
- Parents:
- 63e4efe
- Location:
- test/mgstest
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/mgstest/__init__.py
r63e4efe r3deb86e 17 17 """Python modules for the mod_gnutls test suite.""" 18 18 19 import fcntl 19 20 import sys 20 21 21 import fcntl22 22 from contextlib import contextmanager 23 23 -
test/mgstest/hooks.py
r63e4efe r3deb86e 28 28 * conn_log: file object for connection logging 29 29 * response_log: file object for HTTP response logging 30 31 30 32 31 post_check: -
test/mgstest/http.py
r63e4efe r3deb86e 65 65 s_local.settimeout(self.timeout) 66 66 67 # TODO: Maybe capture stderr?68 67 if self._output_filter: 69 68 self._sproc = subprocess.Popen(self.command, stdout=subprocess.PIPE, -
test/mgstest/tests.py
r63e4efe r3deb86e 23 23 import os 24 24 import re 25 import select 25 26 import subprocess 26 27 import sys … … 320 321 321 322 """ 322 import os323 import select324 323 # message to filter 325 324 cert_log = b'Processed 1 client X.509 certificates...\n'
Note: See TracChangeset
for help on using the changeset viewer.