Skip to content

Commit a64fce8

Browse files
authored
Merge pull request #7517 from sylvestre/fix-intermittent-detection
GNU CI: fix the intermittement management
2 parents 7bd90bb + fe2d19b commit a64fce8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

util/compare_test_results.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ def flatten_test_results(results):
2424
flattened = {}
2525
for util, tests in results.items():
2626
for test_name, status in tests.items():
27-
test_path = f"{util}/{test_name}"
27+
# Build the full test path
28+
test_path = f"tests/{util}/{test_name}"
29+
# Remove the .log extension
30+
test_path = test_path.replace(".log", "")
2831
flattened[test_path] = status
2932
return flattened
3033

0 commit comments

Comments
 (0)