File: 0001-Disable-failing-test-on-32-bit-architectures.patch

package info (click to toggle)
golang-github-bits-and-blooms-bitset 1.24.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 852 kB
  • sloc: makefile: 3
file content (26 lines) | stat: -rw-r--r-- 649 bytes parent folder | download
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,