Skip to content

Commit 81e754f

Browse files
Disable MP tests on AARCH64
1 parent 023b08d commit 81e754f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xtask/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ fn run_vm_tests(opt: &QemuOpt) -> Result<()> {
132132
None => {}
133133
}
134134

135-
// Enable the multi-processor test if KVM is available. KVM is
136-
// available on Linux generally, but not in our CI.
137-
if platform::is_linux() && !opt.ci {
135+
// Enable the multi-processor test if not targeting AARCH64, and if KVM is
136+
// available. KVM is available on Linux generally, but not in our CI.
137+
if *opt.target != UefiArch::AArch64 && platform::is_linux() && !opt.ci {
138138
features.push(Feature::MultiProcessor);
139139
}
140140

0 commit comments

Comments
 (0)