[elbe-devel] [PATCH] tests: simple-validation-image: test SDK generation
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Mon Mar 10 16:18:24 CET 2025
Test the files bundled in the different SDK sysroots.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
tests/simple-validation-image-test.py | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/tests/simple-validation-image-test.py b/tests/simple-validation-image-test.py
index a1aee1a8a8907e0fe501b7623b8051ac9ff24793..22d1228940ec25492393b6bbc1bdae37ba45aa3f 100755
--- a/tests/simple-validation-image-test.py
+++ b/tests/simple-validation-image-test.py
@@ -4,8 +4,12 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2024 Linutronix GmbH
+import pathlib
+import subprocess
import sys
+import tempfile
import textwrap
+import unittest
import elbevalidate
import elbevalidate.pytest
@@ -308,5 +312,35 @@ def test_image(build_dir):
_test_rfs_partition(build_dir, img, partitions[0])
+def _test_sdk_host_sysroot(sysroot):
+ assert sysroot.joinpath('usr', 'bin', 'gcc').is_file()
+ assert sysroot.joinpath('usr', 'bin', 'ld').is_file()
+
+
+def _test_sdk_target_sysroot(sysroot):
+ assert sysroot.joinpath('usr', 'include', 'syscall.h').is_file()
+ assert sysroot.joinpath('usr', 'include', 'gpio.h').is_file()
+ assert sysroot.joinpath('usr', 'lib', 'x86_64-linux-gnu', 'pkgconfig', 'libgpio.pc').is_file()
+ assert sysroot.joinpath('usr', 'lib', 'x86_64-linux-gnu', 'libgpio.so').is_symlink()
+
+
+def test_sdk(build_dir):
+ sdk = build_dir / 'setup-elbe-sdk-x86_64-linux-gnu-simple-validation-image-1.0.sh'
+
+ if not sdk.is_file():
+ raise unittest.SkipTest('no sdk has been built')
+
+ # The script is self extracting; it needs to be executable
+ sdk.chmod(0o755)
+
+ with tempfile.TemporaryDirectory() as tmp:
+ tmp = pathlib.Path(tmp)
+
+ subprocess.check_call([sdk, '-y', '-d', tmp])
+
+ _test_sdk_host_sysroot(tmp / 'sysroots' / 'host')
+ _test_sdk_target_sysroot(tmp / 'sysroots' / 'target')
+
+
if __name__ == '__main__':
elbevalidate.pytest.run_with_pytest(__file__, sys.argv[1])
---
base-commit: 18572c85862e22931e83c83c7b9cff3f1d1f0c8f
change-id: 20250310-tests-sdk-743053e1d7dd
Best regards,
--
Thomas Weißschuh <thomas.weissschuh at linutronix.de>
More information about the elbe-devel
mailing list