Fix fsstress argument name

Updates #5273

PiperOrigin-RevId: 353087710
This commit is contained in:
Fabricio Voznika
2021-01-21 13:20:52 -08:00
committed by gVisor bot
parent 60b07541db
commit 1005a88491
+1 -1
View File
@@ -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 {