Changeset 005b185 in mod_gnutls
- Timestamp:
- Jan 28, 2020, 4:14:05 AM (15 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- f73eeb7
- Parents:
- e46d203
- git-author:
- Fiona Klute <fiona.klute@…> (01/28/20 04:11:41)
- git-committer:
- Fiona Klute <fiona.klute@…> (01/28/20 04:14:05)
- Location:
- test
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
re46d203 r005b185 78 78 noinst_PYTHON = https-test-client.py mgstest/http.py mgstest/__init__.py \ 79 79 mgstest/hooks.py mgstest/services.py mgstest/softhsm.py \ 80 mgstest/tests.py runtest.py softhsm-init.py doctest-mgstest.py \81 required-modules.py80 mgstest/tests.py mgstest/valgrind.py runtest.py softhsm-init.py \ 81 doctest-mgstest.py required-modules.py 82 82 83 83 # Identities in the miniature CA, server, and client environment for -
test/runtest.py
re46d203 r005b185 2 2 # PYTHON_ARGCOMPLETE_OK 3 3 4 # Copyright 2019 Fiona Klute4 # Copyright 2019-2020 Fiona Klute 5 5 # 6 6 # Licensed under the Apache License, Version 2.0 (the "License"); … … 25 25 26 26 import mgstest.hooks 27 import mgstest.valgrind 27 28 from mgstest import lockfile, TestExpectationFailed 28 29 from mgstest.services import ApacheService, TestService … … 206 207 response_log=args.log_responses) 207 208 209 if valgrind_log: 210 with open(valgrind_log) as log: 211 errors = mgstest.valgrind.error_summary(log) 212 print(f'Valgrind summary: {errors[0]} errors, ' 213 f'{errors[1]} suppressed') 214 if errors[0] > 0: 215 sys.exit(ord('V')) 216 208 217 209 218
Note: See TracChangeset
for help on using the changeset viewer.