Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f6e1b28

Browse files
committedFeb 20, 2025··
Fix error detection
1 parent f6598f1 commit f6e1b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎runtime-tests-results/table_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
}
5656

5757
proc_test_data[platform][test_name][target]["total"] += test["tests"]
58-
proc_test_data[platform][test_name][target]["failures"] += test["failures"]
58+
proc_test_data[platform][test_name][target]["failures"] += test["failures"] + test["errors"]
5959

6060
target_list = sorted(target_list)
6161

0 commit comments

Comments
 (0)
Please sign in to comment.