Codebase list golang-github-boltdb-bolt / 621e22d8-1735-4a1c-ae3e-80dc534f6ea7/main
Refresh patches. Debian Janitor 2 years ago
4 changed file(s) with 22 addition(s) and 20 deletion(s). Raw diff Collapse all Expand all
77 db_test.go | 2 +-
88 1 file changed, 1 insertion(+), 1 deletion(-)
99
10 diff --git a/db_test.go b/db_test.go
11 index 1a67e84..0fb9dc7 100644
12 --- a/db_test.go
13 +++ b/db_test.go
14 @@ -412,7 +412,7 @@ func TestDB_Open_InitialMmapSize(t *testing.T) {
10 Index: golang-github-boltdb-bolt/db_test.go
11 ===================================================================
12 --- golang-github-boltdb-bolt.orig/db_test.go
13 +++ golang-github-boltdb-bolt/db_test.go
14 @@ -412,7 +412,7 @@ func TestDB_Open_InitialMmapSize(t *test
1515 }()
1616
1717 select {
1111 create mode 100644 bolt_mips64x.go
1212 create mode 100644 bolt_mipsx.go
1313
14 diff --git a/bolt_mips64x.go b/bolt_mips64x.go
15 new file mode 100644
16 index 0000000..134b578
14 Index: golang-github-boltdb-bolt/bolt_mips64x.go
15 ===================================================================
1716 --- /dev/null
18 +++ b/bolt_mips64x.go
17 +++ golang-github-boltdb-bolt/bolt_mips64x.go
1918 @@ -0,0 +1,12 @@
2019 +// +build mips64 mips64le
2120 +
2928 +
3029 +// Are unaligned load/stores broken on this arch?
3130 +var brokenUnaligned = false
32 diff --git a/bolt_mipsx.go b/bolt_mipsx.go
33 new file mode 100644
34 index 0000000..d5ecb05
31 Index: golang-github-boltdb-bolt/bolt_mipsx.go
32 ===================================================================
3533 --- /dev/null
36 +++ b/bolt_mipsx.go
34 +++ golang-github-boltdb-bolt/bolt_mipsx.go
3735 @@ -0,0 +1,12 @@
3836 +// +build mips mipsle
3937 +
00 Description: Initialize test so that test flags can be parsed during execution.
1 --- a/quick_test.go
2 +++ b/quick_test.go
3 @@ -8,6 +8,7 @@
1 Index: golang-github-boltdb-bolt/quick_test.go
2 ===================================================================
3 --- golang-github-boltdb-bolt.orig/quick_test.go
4 +++ golang-github-boltdb-bolt/quick_test.go
5 @@ -8,6 +8,7 @@ import (
46 "os"
57 "reflect"
68 "testing/quick"
810 "time"
911 )
1012
11 @@ -23,6 +24,11 @@
13 @@ -23,6 +24,11 @@ import (
1214
1315 var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int
1416
33 Origin: vendor,
44 Bug: https://github.com/boltdb/bolt/issues/645
55 Last-Update: 2017-01-06
6 --- a/db_test.go
7 +++ b/db_test.go
8 @@ -531,7 +531,7 @@
6 Index: golang-github-boltdb-bolt/db_test.go
7 ===================================================================
8 --- golang-github-boltdb-bolt.orig/db_test.go
9 +++ golang-github-boltdb-bolt/db_test.go
10 @@ -370,7 +370,7 @@ func TestDB_Open_InitialMmapSize(t *test
911 path := tempfile()
1012 defer os.Remove(path)
1113