Skip to content

Commit 242e29e

Browse files
committed
Substitute deprecated rand.Seed() in Go 1.20
Signed-off-by: Henry Wang <[email protected]>
1 parent 77a2d47 commit 242e29e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

cmd/continuity/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
require (
1616
github.com/inconshreveable/mousetrap v1.0.0 // indirect
1717
github.com/spf13/pflag v1.0.5 // indirect
18-
golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 // indirect
18+
golang.org/x/sys v0.1.0 // indirect
1919
google.golang.org/protobuf v1.26.0 // indirect
2020
)
2121

cmd/continuity/go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7w
5454
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
5555
golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 h1:kHVeDEnfKn3T238CvrUcz6KeEsFHVaKh4kMTt6Wsysg=
5656
golang.org/x/sys v0.0.0-20220405210540-1e041c57c461/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
57+
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=
58+
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5759
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
5860
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
5961
golang.org/x/tools v0.0.0-20200423201157-2723c5de0d66/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=

manifest_test.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ import (
4141
// 3. ADS - no clue where to start.
4242

4343
func TestWalkFS(t *testing.T) {
44-
rand.Seed(1)
4544

4645
// Testing:
4746
// 1. Setup different files:
@@ -219,6 +218,10 @@ const (
219218
rnamedpipe
220219
)
221220

221+
var (
222+
rng = rand.New(rand.NewSource(1))
223+
)
224+
222225
type dresource struct {
223226
kind kind
224227
path string
@@ -236,7 +239,7 @@ func generateTestFiles(t *testing.T, root string, resources []dresource) {
236239
p := filepath.Join(root, resource.path)
237240
switch resource.kind {
238241
case rfile:
239-
size := rand.Intn(4 << 20)
242+
size := rng.Intn(4 << 20)
240243
d := make([]byte, size)
241244
randomBytes(d)
242245
dgst := digest.FromBytes(d)
@@ -312,7 +315,7 @@ func generateTestFiles(t *testing.T, root string, resources []dresource) {
312315

313316
func randomBytes(p []byte) {
314317
for i := range p {
315-
p[i] = byte(rand.Intn(1<<8 - 1))
318+
p[i] = byte(rng.Intn(1<<8 - 1))
316319
}
317320
}
318321

0 commit comments

Comments
 (0)