Merge pull request #4317 from miles170/issue-4276-fix-docs

docs: fix invalid test status in gnu-full-result
This commit is contained in:
Sylvestre Ledru 2023-02-02 23:56:18 +01:00 committed by GitHub
commit 4393eca62d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,9 +3,9 @@ Extract the GNU logs into a JSON file.
"""
import json
from pathlib import Path
import re
import sys
from os import environ
from pathlib import Path
out = {}
@ -20,7 +20,11 @@ for filepath in test_dir.glob("**/*.log"):
try:
with open(path) as f:
content = f.read()
current[path.name] = content.split("\n")[-2].split(" ")[0]
result = re.search(
r"(PASS|FAIL|SKIP|ERROR) [^ ]+ \(exit status: \d+\)$", content
)
if result:
current[path.name] = result.group(1)
except:
pass