Ignore simd_const test when glibc has a floating point parsing issue

This commit is contained in:
Andrew Brown
2019-09-26 14:44:44 -07:00
committed by Dan Gohman
parent 68de2247bc
commit 0667a2897d

View File

@@ -167,6 +167,7 @@ fn ignore(testsuite: &str, name: &str) -> bool {
{ {
return match (testsuite, name) { return match (testsuite, name) {
("spec_testsuite", "const") => true, ("spec_testsuite", "const") => true,
("single_file_spec_test", "simd_const") => true,
(_, _) => false, (_, _) => false,
}; };
} }