mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
support/testing/tests/package/test_libshdata: new test
This new test ensures that libraries and binaries generated using Parrot Alchemy build system are correct. Indeed, the test uses libshdata-stress. This binary depends on libshdata. libshdata depends on libfutils and libfutils depends on ulog. All of these binaries and libraries are built using Alchemy. Signed-off-by: Herve Codina <herve.codina@bootlin.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
d1e8f787e9
commit
af5b1ec68b
@ -1204,6 +1204,7 @@ F: package/php-pam/
|
||||
F: package/php-pecl-dbus/
|
||||
F: package/ulog/
|
||||
F: support/testing/tests/package/test_dtbocfg.py
|
||||
F: support/testing/tests/package/test_libshdata.py
|
||||
F: support/testing/tests/package/test_lua_augeas.py
|
||||
F: support/testing/tests/package/test_php_apcu.py
|
||||
F: support/testing/tests/package/test_php_lua.py
|
||||
|
25
support/testing/tests/package/test_libshdata.py
Normal file
25
support/testing/tests/package/test_libshdata.py
Normal file
@ -0,0 +1,25 @@
|
||||
import os
|
||||
|
||||
import infra.basetest
|
||||
|
||||
|
||||
class TestLibshdata(infra.basetest.BRTest):
|
||||
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
||||
"""
|
||||
BR2_PACKAGE_LIBSHDATA=y
|
||||
BR2_PACKAGE_LIBSHDATA_STRESS=y
|
||||
BR2_TARGET_ROOTFS_CPIO=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
"""
|
||||
|
||||
def test_run(self):
|
||||
img = os.path.join(self.builddir, "images", "rootfs.cpio")
|
||||
self.emulator.boot(arch="armv5",
|
||||
kernel="builtin",
|
||||
options=["-initrd", img])
|
||||
self.emulator.login()
|
||||
|
||||
# Just run libshdata-stress.
|
||||
# This ensures that library are well compiled and that all dependencies
|
||||
# are met using Parrot Alchemy build system.
|
||||
self.assertRunOk("libshdata-stress")
|
Loading…
Reference in New Issue
Block a user