We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 023b08d commit c93386eCopy full SHA for c93386e
xtask/src/main.rs
@@ -132,9 +132,9 @@ fn run_vm_tests(opt: &QemuOpt) -> Result<()> {
132
None => {}
133
}
134
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 {
+ // Enable the multi-processor test if not targeting AARCH64, and if KVM is
+ // available. KVM is available on Linux generally, but not in our CI.
+ if *opt.target != UefiArch::AArch64 && platform::is_linux() && !opt.ci {
138
features.push(Feature::MultiProcessor);
139
140
0 commit comments