Skip to content

Commit 172d4b9

Browse files
committed
Add temporary abi_check.py bridge script
This keeps the CI happy while we migrate it to use the script's new location inside the framework. Signed-off-by: Bence Szépkúti <[email protected]>
1 parent 2e45d81 commit 172d4b9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

framework

scripts/abi_check.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
"""Temporary bridge script.
3+
See framework/scripts/mbedtls_framework/abi_check.py for detailed documentation.
4+
"""
5+
6+
# Copyright The Mbed TLS Contributors
7+
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
8+
9+
import framework_scripts_path # pylint: disable=unused-import
10+
from mbedtls_framework import abi_check
11+
12+
if __name__ == "__main__":
13+
abi_check.run_main()

0 commit comments

Comments
 (0)