Skip to content

Commit

Permalink
x/bank: skip failing BenchmarkOneBankSend* to avoid blocking benchmar…
Browse files Browse the repository at this point in the history
…king (#10033)
  • Loading branch information
odeke-em authored Aug 30, 2021
1 parent ccd95f3 commit 0745320
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions x/bank/bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import (
var moduleAccAddr = authtypes.NewModuleAddress(stakingtypes.BondedPoolName)

func BenchmarkOneBankSendTxPerBlock(b *testing.B) {
b.Skip("Skipping benchmark with buggy code reported at https://github.com/cosmos/cosmos-sdk/issues/10023")

b.ReportAllocs()
// Add an account at genesis
acc := authtypes.BaseAccount{
Expand Down Expand Up @@ -61,6 +63,8 @@ func BenchmarkOneBankSendTxPerBlock(b *testing.B) {
}

func BenchmarkOneBankMultiSendTxPerBlock(b *testing.B) {
b.Skip("Skipping benchmark with buggy code reported at https://github.com/cosmos/cosmos-sdk/issues/10023")

b.ReportAllocs()
// Add an account at genesis
acc := authtypes.BaseAccount{
Expand Down

0 comments on commit 0745320

Please sign in to comment.