From fafc86c1cd45481f78a5578ee69b06dec35d4592 Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Fri, 16 Aug 2019 14:17:25 +0200 Subject: [PATCH] Use virtio-net instead of rtl8139 network cards for test See https://github.com/cockpit-project/cockpit/pull/12569 --- test/check-application | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/check-application b/test/check-application index 3c2498b17..d8aed5a04 100755 --- a/test/check-application +++ b/test/check-application @@ -54,7 +54,9 @@ def run_webdriver_tests(machine, env=[]): def run_e2e(verbose, image, browser, cpus, memory, sit): # settings on composer VM - network = testvm.VirtNetwork(0) + + # When Windows in use, we need rtl8139, for anything else we want virtio-net-pci + network = testvm.VirtNetwork(0, image="windows-10" if "edge" in browser else image) composer = testvm.VirtMachine(verbose=verbose, image=image, networking=network.host(), memory_mb=memory, cpus=cpus)