1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: "Dr. Tobias Quathamer" <toddy@debian.org>
Date: Sat, 25 Oct 2025 10:20:59 +0200
Subject: Disable failing test on 32 bit architectures
Forwarded: https://github.com/bits-and-blooms/bitset/issues/209
---
bitset_test.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/bitset_test.go b/bitset_test.go
index 371d452..131c850 100644
--- a/bitset_test.go
+++ b/bitset_test.go
@@ -2489,10 +2489,12 @@ func TestWord(t *testing.T) {
index: 256,
expected: 0,
},
+ /*
"way off the edge": {
index: 6346235235,
expected: 0,
},
+ */
"split between two words": {
index: 96,
expected: 0x1245dee13fe212a7,
|