From: Dick Olsson Date: Sun, 2 May 2021 08:17:12 +0000 (+0000) Subject: support/testing: add s6 tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=985d733f314320b1d5b01f959fc9c7da119cc79c;p=buildroot.git support/testing: add s6 tests Test that directory scanning and supervision is working. Signed-off-by: Dick Olsson Signed-off-by: Arnout Vandecappelle (Essensium/Mind) [Arnout: properly indent, and use textwrap to dedent again.] --- diff --git a/support/testing/tests/package/test_s6.py b/support/testing/tests/package/test_s6.py new file mode 100644 index 0000000000..0772831db8 --- /dev/null +++ b/support/testing/tests/package/test_s6.py @@ -0,0 +1,58 @@ +import os +import textwrap + +import infra.basetest + + +class TestS6(infra.basetest.BRTest): + config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \ + """ + BR2_PACKAGE_S6=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() + + _, exit_code = self.emulator.run("s6-svscan -h") + self.assertEqual(exit_code, 100) + + script = \ + """ + #!/bin/execlineb -P + s6-ipcserver-socketbinder /tmp/socket + s6-ipcserverd + cat + """ + script = textwrap.dedent(script) + + # Set up scanning and service directories + self.emulator.run("mkdir -p source/testsv") + self.emulator.run("cat > source/testsv/run <