bugfix: cfg(tests) should be cfg(test) (#450)

This commit is contained in:
gnzlbg
2018-05-16 20:59:28 +02:00
committed by Alex Crichton
parent 8ea9bc53f1
commit 9e797f2de1
2 changed files with 5 additions and 18 deletions

View File

@@ -68,7 +68,7 @@ pub fn simd_test(
"i686" | "x86_64" | "i586" => "is_x86_feature_detected",
"arm" | "armv7" => "is_arm_feature_detected",
"aarch64" => "is_aarch64_feature_detected",
"powerpc64" => "is_powerpc64_feature_detected",
"powerpc64" | "powerpc64le" => "is_powerpc64_feature_detected",
"mips" | "mipsel" => {
// FIXME:
// On MIPS CI run-time feature detection always returns false due