557c68fbd2
Add a basic module that installs a single file, to check that it is properly accounted for. Reported-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thierry Bultel <thierry.bultel@linatsea.fr> Cc: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
131 lines
3.8 KiB
Python
131 lines
3.8 KiB
Python
import os
|
|
import infra.basetest
|
|
import subprocess
|
|
|
|
CHECK_FS_CMD = "mount | grep 'rootfs on / type rootfs'"
|
|
|
|
|
|
def boot_img(emulator, builddir):
|
|
img = os.path.join(builddir, "images", "rootfs.cpio")
|
|
emulator.boot(arch="armv7",
|
|
kernel="builtin",
|
|
options=["-initrd", "{}".format(img)])
|
|
emulator.login()
|
|
_, exit_code = emulator.run(CHECK_FS_CMD)
|
|
return exit_code
|
|
|
|
|
|
class TestCpioFull(infra.basetest.BRTest):
|
|
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
|
"""
|
|
BR2_INIT_BUSYBOX=y
|
|
BR2_TARGET_ROOTFS_CPIO=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
"""
|
|
|
|
def test_run(self):
|
|
|
|
exit_code = boot_img(self.emulator,
|
|
self.builddir)
|
|
self.assertEqual(exit_code, 0)
|
|
|
|
|
|
class TestCpioDracutBase(infra.basetest.BRTest):
|
|
config = \
|
|
"""
|
|
BR2_arm=y
|
|
BR2_TOOLCHAIN_EXTERNAL=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
|
|
BR2_INIT_BUSYBOX=y
|
|
BR2_PACKAGE_CRAMFS=y
|
|
BR2_PACKAGE_PV=y
|
|
BR2_TARGET_ROOTFS_CPIO=y
|
|
BR2_TARGET_ROOTFS_CPIO_DRACUT=y
|
|
BR2_TARGET_ROOTFS_CPIO_DRACUT_MODULES="{}"
|
|
BR2_TARGET_ROOTFS_CPIO_DRACUT_CONF_FILES="{}"
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
""".format("support/testing/tests/fs/test_cpio/modules",
|
|
" ".join(["fs/cpio/dracut.conf",
|
|
"support/testing/tests/fs/test_cpio/dracut-cramfs.conf"]))
|
|
|
|
def check_dracut(self):
|
|
out = subprocess.check_output(["cpio", "--list"],
|
|
stdin=open(os.path.join(self.builddir, "images/rootfs.cpio")),
|
|
stderr=open(os.devnull, "w"),
|
|
cwd=self.builddir,
|
|
env={"LANG": "C"},
|
|
universal_newlines=True)
|
|
# pv should *not* be included in cpio image
|
|
self.assertEqual(out.find("bin/pv"), -1)
|
|
# libz should be, because of cramfs
|
|
self.assertNotEqual(out.find("usr/bin/mkcramfs"), -1)
|
|
self.assertNotEqual(out.find("usr/bin/cramfsck"), -1)
|
|
self.assertNotEqual(out.find("usr/lib/libz.so"), -1)
|
|
|
|
exit_code = boot_img(self.emulator,
|
|
self.builddir)
|
|
self.assertEqual(exit_code, 0)
|
|
|
|
|
|
class TestCpioDracutUclibc(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|
|
|
|
|
|
class TestCpioDracutGlibc(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|
|
|
|
|
|
class TestCpioDracutMusl(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|
|
|
|
|
|
class TestCpioDracutUclibcMergedUsr(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_ROOTFS_MERGED_USR=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|
|
|
|
|
|
class TestCpioDracutGlibcMergedUsr(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_ROOTFS_MERGED_USR=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|
|
|
|
|
|
class TestCpioDracutMuslMergedUsr(TestCpioDracutBase):
|
|
config = TestCpioDracutBase.config + \
|
|
"""
|
|
BR2_ROOTFS_MERGED_USR=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_STABLE=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.check_dracut()
|