From 541289c9cbd0b8356526d7a149d0d8daac2c336d Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 7 Apr 2026 16:19:09 +0200 Subject: [PATCH] Copyediting Signed-off-by: Gilles Peskine --- scripts/mbedtls_framework/outcome_analysis.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/mbedtls_framework/outcome_analysis.py b/scripts/mbedtls_framework/outcome_analysis.py index 656db53ee..bd80b2ec5 100644 --- a/scripts/mbedtls_framework/outcome_analysis.py +++ b/scripts/mbedtls_framework/outcome_analysis.py @@ -229,7 +229,7 @@ class CoverageTask(Task): # Test cases whose suite and description are matched by an entry in # UNCOVERED_TESTS are expected to be never executed. - # Tests matched by IGNORED_TESTS are ignored entierly. + # Tests matched by IGNORED_TESTS are ignored entirely. # All other test cases are expected to be executed at least once. UNCOVERED_TESTS: TestCaseSetDescription = {} @@ -313,9 +313,10 @@ class DriverVSReference(Task): DRIVER = '' # Ignored test suites (without the test_suite_ prefix). IGNORED_SUITES = [] #type: typing.Sequence[str] - # Ignored test cases. Despite the name, these test case are not - # completely ignored: they must be skipped by drivers, indicating - # a spurious entry. + # Ignored test cases. Despite the name, these test cases are not + # completely ignored: they must be skipped by driver tests. If they + # are not skipped, this indicates a spurious entry and the analysis will + # complain. IGNORED_TESTS: TestCaseSetDescription = {} def __init__(self, options) -> None: