Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ci/rt-status.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import os
import sys
import re

# files used in result comparison
test_list = os.environ["test_list"].split()
Expand All @@ -34,7 +35,8 @@ def check_for_diff(tests):
full_file = full_case_dir + '/' + file
if file.endswith('.diff') or ( file=="TEST_ERROR" and os.path.getsize(full_file) ):
for test in tests:
if test in case_dir:
rpat = rf"\b{test}_\d+\b"
if re.match(rpat, case_dir):
diff_case = test
break
if diff_case:
Expand Down
Loading
Loading