From 0667a2897d86e433152fdb392939bf75eb68580c Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Thu, 26 Sep 2019 14:44:44 -0700 Subject: [PATCH] Ignore simd_const test when glibc has a floating point parsing issue --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index b746ae5df5..56cd2fb8a2 100644 --- a/build.rs +++ b/build.rs @@ -167,6 +167,7 @@ fn ignore(testsuite: &str, name: &str) -> bool { { return match (testsuite, name) { ("spec_testsuite", "const") => true, + ("single_file_spec_test", "simd_const") => true, (_, _) => false, }; }