Skip to content

Commit

Permalink
roachtest: use StartE in disk_full test
Browse files Browse the repository at this point in the history
This will report a better stack trace if it fails (which it does).

Release note: None
  • Loading branch information
tbg committed Apr 1, 2019
1 parent 0cffca3 commit 7fe1ac8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/cmd/roachtest/disk_full.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ func registerDiskFull(r *registry) {
c.Run(ctx, c.Node(n), "rm -f {store-dir}/ballast")
// Clear any death expectations that did not occur.
m.ResetDeaths()
c.Start(ctx, t, c.Node(n))
return nil
return c.StartE(ctx, c.Node(n))
})
m.Wait()
},
Expand Down

0 comments on commit 7fe1ac8

Please sign in to comment.