From f89e3e5ca471ec07bb736fb3b87193abdc60b799 Mon Sep 17 00:00:00 2001 From: Adam Wick Date: Tue, 6 Mar 2018 19:00:16 -0800 Subject: [PATCH] Ignore the identity tests for now, because they take longer than anything else. --- src/cryptonum/builder.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cryptonum/builder.rs b/src/cryptonum/builder.rs index 6a17ead..30d7891 100644 --- a/src/cryptonum/builder.rs +++ b/src/cryptonum/builder.rs @@ -620,6 +620,7 @@ macro_rules! construct_unsigned { } quickcheck! { + #[ignore] fn div_identity(a: $type) -> bool { &a / $type::from_u64(1) == a }