summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2024-06-25 11:21:49 +0200
committerRainer Jung <rjung@apache.org>2024-06-25 11:21:49 +0200
commitfd1460442aa0aa7c5eb8067d856c7ac53a30a7fb (patch)
tree5c365752d14d8be41630bae06889a8e461171e61 /test
parentdocs bld break (diff)
downloadapache2-fd1460442aa0aa7c5eb8067d856c7ac53a30a7fb.tar.xz
apache2-fd1460442aa0aa7c5eb8067d856c7ac53a30a7fb.zip
pytest: fix asset list extraction from nghttp output
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1918576 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/pyhttpd/nghttp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pyhttpd/nghttp.py b/test/pyhttpd/nghttp.py
index 43721f599a..e857e9505a 100644
--- a/test/pyhttpd/nghttp.py
+++ b/test/pyhttpd/nghttp.py
@@ -224,7 +224,7 @@ class Nghttp:
if 0 == r.exit_code:
lines = re.findall(r'[^\n]*\n', r.stdout, re.MULTILINE)
for lidx, l in enumerate(lines):
- m = re.match(r'\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+/(.*)', l)
+ m = re.match(r'\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+/*(/.*)', l)
if m:
assets.append({
"path": m.group(7),