Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 2 additions & 15 deletions crates/simd-test-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,8 @@ pub fn simd_test(
"aarch64" => "is_aarch64_feature_detected",
"powerpc" | "powerpcle" => "is_powerpc_feature_detected",
"powerpc64" | "powerpc64le" => "is_powerpc64_feature_detected",
"mips" | "mipsel" => {
// FIXME:
// On MIPS CI run-time feature detection always returns false due
// to this qemu bug: https://bugs.launchpad.net/qemu/+bug/1754372
//
// This is a workaround to force the MIPS tests to always run on
// CI.
force_test = true;
"is_mips_feature_detected"
}
"mips64" | "mips64el" => {
// FIXME: see above
force_test = true;
"is_mips64_feature_detected"
}
"mips" | "mipsel" | "mipsisa32r6" | "mipsisa32r6el" => "is_mips_feature_detected",
"mips64" | "mips64el" | "mipsisa64r6" | "mipsisa64r6el" => "is_mips64_feature_detected",
t => panic!("unknown target: {}", t),
};
let macro_test = Ident::new(macro_test, Span::call_site());
Expand Down