From c8a618cff715c4cc96f01a516f39107b059e25f1 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Fri, 19 Aug 2022 19:50:58 +0200 Subject: [PATCH] support/test/cpio: test for pv already done by listing the cpio archive Since we do not pivot_root/switch_root from the cpio, whatever we get in the rootfs was exactly what we got by listing the cpio archive. Drop the test for the presence of pv, it's redundant. Signed-off-by: Yann E. MORIN Cc: Arnout Vandecappelle (Essensium/Mind) Cc: Thierry Bultel Cc: Adam Duskett Signed-off-by: Arnout Vandecappelle --- support/testing/tests/fs/test_cpio.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/support/testing/tests/fs/test_cpio.py b/support/testing/tests/fs/test_cpio.py index 3f661e370c..9a529f1edd 100644 --- a/support/testing/tests/fs/test_cpio.py +++ b/support/testing/tests/fs/test_cpio.py @@ -57,10 +57,6 @@ class TestCpioDracutBase(infra.basetest.BRTest): self.builddir) self.assertEqual(exit_code, 0) - # No pivot_root is done, so pv shouldn't be there - _, exit_code = self.emulator.run("ls -l /usr/bin/pv") - self.assertNotEqual(exit_code, 0) - class TestCpioDracutUclibc(TestCpioDracutBase): config = TestCpioDracutBase.config + \