Skip to content

Commit 1296c1d

Browse files
committed
Add abi_check.py bridge script
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 <bence.szepkuti@arm.com>
1 parent 49cf57e commit 1296c1d

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

scripts/abi_check.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env python3
2+
"""Bridge script
3+
See framework/scripts/mbedtls_framework/interface_checks.py for detailed documentation.
4+
5+
This is a convenient place to encode any branch-specific information we might want to add
6+
in the future.
7+
"""
8+
9+
# Copyright The Mbed TLS Contributors
10+
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
11+
12+
import framework_scripts_path # pylint: disable=unused-import
13+
from mbedtls_framework import interface_checks
14+
15+
if __name__ == "__main__":
16+
interface_checks.run_main()

0 commit comments

Comments
 (0)