From 6b70913703c4364f27ece83c07b23a6e0ef8225f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Neusch=C3=A4fer?= Date: Fri, 26 Jul 2024 22:03:52 +0200 Subject: [PATCH] support/testing: fix s6-portable-utils test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit s6-test was removed in s6-portable-utils 2.3.0.0, and replaced with eltest (from execline). This change broke the existing runtime tests with commit 42fad03182 ("packages: bump skalibs-related packages"). Instead of s6-test simply use the shell built-in "test", which provides sufficient functionality. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/7338388010 Signed-off-by: J. Neuschäfer Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/test_s6_portable_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_s6_portable_utils.py b/support/testing/tests/package/test_s6_portable_utils.py index 372e3ba812..d4df70cd51 100644 --- a/support/testing/tests/package/test_s6_portable_utils.py +++ b/support/testing/tests/package/test_s6_portable_utils.py @@ -28,5 +28,5 @@ class TestS6PortableUtils(infra.basetest.BRTest): _, exit_code = self.emulator.run("s6-mkfifo testpipe") self.assertEqual(exit_code, 0) - _, exit_code = self.emulator.run("s6-test -p testpipe") + _, exit_code = self.emulator.run("test -p testpipe") self.assertEqual(exit_code, 0)