From: Cédric Le Goater Date: Sat, 8 Mar 2025 07:13:28 +0000 (+0100) Subject: tests/functional: Require 'user' netdev for ppc64 e500 test X-Git-Tag: v10.0.0-rc0~7^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=533b33d04bff604863deff3f7d41396d110b57e6;p=thirdparty%2Fqemu.git tests/functional: Require 'user' netdev for ppc64 e500 test When commit 72cdd672e18c extended the ppc64 e500 test to add network support, it forgot to require the 'user' netdev backend. Fix that. Fixes: 72cdd672e18c ("tests/functional: Replace the ppc64 e500 advent calendar test") Signed-off-by: Cédric Le Goater Reviewed-by: Thomas Huth Acked-by: Bernhard Beschow Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20250308071328.193694-1-clg@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/tests/functional/test_ppc64_e500.py b/tests/functional/test_ppc64_e500.py index 9ce7ae6c47..f5fcad9f6b 100755 --- a/tests/functional/test_ppc64_e500.py +++ b/tests/functional/test_ppc64_e500.py @@ -20,6 +20,7 @@ class E500Test(LinuxKernelTest): def test_ppc64_e500_buildroot(self): self.set_machine('ppce500') + self.require_netdev('user') self.cpu = 'e5500' uimage_path = self.ASSET_BR2_E5500_UIMAGE.fetch()