diff --git a/app/sim_test.go b/app/sim_test.go index edcb94b8..298acccc 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -681,9 +681,11 @@ func BenchmarkInvariants(b *testing.B) { // their respective metadata which makes it useful for testing/benchmarking. for _, cr := range app.crisisKeeper.Routes() { b.Run(fmt.Sprintf("%s/%s", cr.ModuleName, cr.Route), func(b *testing.B) { - if res, stop := cr.Invar(ctx); stop { - fmt.Printf("broken invariant at block %d of %d\n%s", ctx.BlockHeight()-1, config.NumBlocks, res) - b.FailNow() + for n := 0; n < b.N; n++ { + if res, stop := cr.Invar(ctx); stop { + fmt.Printf("broken invariant at block %d of %d\n%s", ctx.BlockHeight()-1, config.NumBlocks, res) + b.FailNow() + } } }) }