From 57009f3911a5324ec9ca03f992a1ffa8ef808f50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Wed, 22 Oct 2025 00:52:06 +0200 Subject: [PATCH] Add abi_check.py bridge script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bulk of the script that was moved to the framework is now a pure python module - bridge scripts like this one will remain in each individual branch, and continue to be the way to invoke the ABI checks. This way we can use the bridge scripts to encode branch-specific information in a more convenient way. Signed-off-by: Bence Szépkúti --- scripts/abi_check.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts/abi_check.py diff --git a/scripts/abi_check.py b/scripts/abi_check.py new file mode 100755 index 0000000000..517d40e355 --- /dev/null +++ b/scripts/abi_check.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python3 +"""Bridge script +See framework/scripts/mbedtls_framework/interface_checks.py for detailed documentation. + +This is a convenient place to encode any branch-specific information we might want to add +in the future. +""" + +# Copyright The Mbed TLS Contributors +# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + +import framework_scripts_path # pylint: disable=unused-import +from mbedtls_framework import interface_checks + +if __name__ == "__main__": + interface_checks.run_main()