From 9f930e0f9e0df867826cb59d8cdce9201cbaf3b3 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 3 Oct 2024 17:38:32 +0200 Subject: [PATCH] Create a module to split branch-independent code out of analyze_outcomes.py Signed-off-by: Gilles Peskine --- tests/scripts/outcome_analysis.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/scripts/outcome_analysis.py diff --git a/tests/scripts/outcome_analysis.py b/tests/scripts/outcome_analysis.py new file mode 100644 index 0000000000..84b83eb81b --- /dev/null +++ b/tests/scripts/outcome_analysis.py @@ -0,0 +1,9 @@ +"""Outcome file analysis code. + +This module is the bulk of the code of tests/scripts/analyze_outcomes.py +in each consuming branch. The consuming script is expected to derive +the classes with branch-specific customizations such as ignore lists. +""" + +# Copyright The Mbed TLS Contributors +# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later