Skip to content

Commit

Permalink
increases test duration and fixes a mis-assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
staheri14 committed Jun 5, 2024
1 parent 3842cf1 commit 3ba629c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.22.3
require (
cosmossdk.io/errors v1.0.1
cosmossdk.io/math v1.3.0
github.com/aws/aws-sdk-go v1.44.122
github.com/celestiaorg/blobstream-contracts/v3 v3.1.0
github.com/celestiaorg/go-square v1.0.1
github.com/celestiaorg/go-square/merkle v0.0.0-20240117232118-fd78256df076
Expand Down Expand Up @@ -50,7 +51,6 @@ require (
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/Workiva/go-datastructures v1.0.53 // indirect
github.com/armon/go-metrics v0.4.1 // indirect
github.com/aws/aws-sdk-go v1.44.122 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
Expand Down
7 changes: 4 additions & 3 deletions test/e2e/benchmark/throughput.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ func LargeNetwork_BigBlock_8MiB(logger *log.Logger) error {
manifest.MaxBlockBytes = 8 * toMiB
manifest.Validators = 50
manifest.TxClients = 50
manifest.BlobsPerSeq = 20
manifest.BlobSequences = 20
manifest.TestDuration = 15 * time.Minute

benchTest, err := NewBenchmarkTest("LargeNetwork_BigBlock_8MiB", &manifest)
testnet.NoError("failed to create benchmark test", err)
Expand All @@ -228,7 +229,7 @@ func LargeNetwork_BigBlock_32MiB(logger *log.Logger) error {
manifest.MaxBlockBytes = 32 * toMiB
manifest.Validators = 50
manifest.TxClients = 50
manifest.BlobsPerSeq = 20
manifest.BlobSequences = 20

benchTest, err := NewBenchmarkTest("LargeNetwork_BigBlock_32MiB", &manifest)
testnet.NoError("failed to create benchmark test", err)
Expand All @@ -254,7 +255,7 @@ func LargeNetwork_BigBlock_64MiB(logger *log.Logger) error {
manifest.MaxBlockBytes = 64 * toMiB
manifest.Validators = 50
manifest.TxClients = 50
manifest.BlobsPerSeq = 20
manifest.BlobSequences = 20

benchTest, err := NewBenchmarkTest("LargeNetwork_BigBlock_64MiB", &manifest)
testnet.NoError("failed to create benchmark test", err)
Expand Down

0 comments on commit 3ba629c

Please sign in to comment.