Skip to content

Commit 7df484a

Browse files
committed
xtask: turn on PXE tests for all platforms
With the switch to virtio-net we have networking on all platforms. Turn on the pxe test everywhere. Also serves as workaround for #1617 Signed-off-by: Gerd Hoffmann <[email protected]>
1 parent 88a1922 commit 7df484a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: xtask/src/main.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,8 @@ fn run_vm_tests(opt: &QemuOpt) -> Result<()> {
153153
features.push(Feature::DebugSupport);
154154
}
155155

156-
// Enable the PXE test unless networking is disabled or the arch doesn't
157-
// support it.
158-
if *opt.target == UefiArch::X86_64 && !opt.disable_network {
156+
// Enable the PXE test unless networking is disabled
157+
if !opt.disable_network {
159158
features.push(Feature::Pxe);
160159
}
161160

0 commit comments

Comments
 (0)