From 997da1ff70cc52988641a75e1a46d4b398d5fe12 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Mon, 11 Aug 2014 15:37:29 -0600 Subject: [PATCH] Disable test_binary_keys. This test is currently broken in cross compiles. It can be reenabled after the next Rust upgrade. --- phf/tests/test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/phf/tests/test.rs b/phf/tests/test.rs index edfa789..b28cf0f 100644 --- a/phf/tests/test.rs +++ b/phf/tests/test.rs @@ -144,6 +144,7 @@ mod map { ) #[test] + #[ignore] fn test_binary_keys() { test_key_type!(&'static [u8], b"hello" => 0, b"world" => 1); }