From f87bc4426f95f772932c29b90d8ad5bb5f266581 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Mon, 5 Oct 2020 17:48:43 -0600 Subject: [PATCH] skip test on 32 bit --- rust/arrow/src/util/bit_util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/arrow/src/util/bit_util.rs b/rust/arrow/src/util/bit_util.rs index d8ffa6f19c5..bcf3376d4a9 100644 --- a/rust/arrow/src/util/bit_util.rs +++ b/rust/arrow/src/util/bit_util.rs @@ -409,6 +409,7 @@ mod tests { } #[test] + #[cfg(all(any(target_arch = "x86", target_arch = "x86_64")))] fn test_ceil() { assert_eq!(ceil(0, 1), 0); assert_eq!(ceil(1, 1), 1);