From 1005a8849173c84f12f4a86b32fb170ab9149082 Mon Sep 17 00:00:00 2001 From: Fabricio Voznika Date: Thu, 21 Jan 2021 13:19:02 -0800 Subject: Fix fsstress argument name Updates #5273 PiperOrigin-RevId: 353087710 --- test/fsstress/fsstress_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/fsstress') diff --git a/test/fsstress/fsstress_test.go b/test/fsstress/fsstress_test.go index 63f692ca9..300c21ceb 100644 --- a/test/fsstress/fsstress_test.go +++ b/test/fsstress/fsstress_test.go @@ -41,7 +41,7 @@ func fsstress(t *testing.T, dir string) { image = "basic/fsstress" ) seed := strconv.FormatUint(uint64(rand.Uint32()), 10) - args := []string{"-d", dir, "-n", operations, "-p", processes, "-seed", seed, "-X"} + args := []string{"-d", dir, "-n", operations, "-p", processes, "-s", seed, "-X"} t.Logf("Repro: docker run --rm --runtime=runsc %s %s", image, strings.Join(args, "")) out, err := d.Run(ctx, dockerutil.RunOpts{Image: image}, args...) if err != nil { -- cgit v1.2.3