diff options
author | Fabricio Voznika <fvoznika@google.com> | 2021-01-21 13:19:02 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-21 13:20:52 -0800 |
commit | 1005a8849173c84f12f4a86b32fb170ab9149082 (patch) | |
tree | f7b0b813c8f085e5c0afa8399951e1323970e5a2 /test/fsstress | |
parent | 60b07541dbfa3db29e9e21f554762cc192e14ab3 (diff) |
Fix fsstress argument name
Updates #5273
PiperOrigin-RevId: 353087710
Diffstat (limited to 'test/fsstress')
-rw-r--r-- | test/fsstress/fsstress_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |