From 3d863f263136525d62d7617f34038139bc87b153 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 26 Jun 2020 13:02:30 +0200 Subject: [PATCH] Document the fields of TestCasesOutcomes Signed-off-by: Gilles Peskine --- tests/scripts/analyze_outcomes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index 96599bd53..73f16bdb2 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -37,6 +37,10 @@ class TestCaseOutcomes: # pylint: disable=too-few-public-methods def __init__(self): + # Collect a list of witnesses of the test case succeeding or failing. + # Currently we don't do anything with witnesses except count them. + # The format of a witness is determined by the read_outcome_file + # function; it's the platform and configuration joined by ';'. self.successes = [] self.failures = []