From 25872c333d9dce3dec5b2d54ae396ae08f3e8445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 11 Dec 2025 21:48:35 +0100 Subject: [PATCH] Rename abi_check and convert it to a pure-play module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The actual scripts will continue to live in the individual repositories. Signed-off-by: Bence Szépkúti --- .../mbedtls_framework/{abi_check.py => interface_checks.py} | 5 ----- 1 file changed, 5 deletions(-) rename scripts/mbedtls_framework/{abi_check.py => interface_checks.py} (99%) mode change 100755 => 100644 diff --git a/scripts/mbedtls_framework/abi_check.py b/scripts/mbedtls_framework/interface_checks.py old mode 100755 new mode 100644 similarity index 99% rename from scripts/mbedtls_framework/abi_check.py rename to scripts/mbedtls_framework/interface_checks.py index 85063e9bf..37c5f5aca --- a/scripts/mbedtls_framework/abi_check.py +++ b/scripts/mbedtls_framework/interface_checks.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 """This script compares the interfaces of two versions of Mbed TLS, looking for backward incompatibilities between two different Git revisions within an Mbed TLS repository. It must be run from the root of a Git working tree. @@ -677,7 +676,3 @@ def run_main(): # status 2, not 1. traceback.print_exc() sys.exit(2) - - -if __name__ == "__main__": - run_main()