Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase RAM limits for TestTraceBallast1kSPSWithAttrs #3742

Merged
merged 1 commit into from
Aug 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Increase RAM limits for TestTraceBallast1kSPSWithAttrs
  • Loading branch information
tigrannajaryan authored Jul 30, 2021
commit 6ccf4709c95df9cbca120f5fcbf123adc58d17fe
8 changes: 4 additions & 4 deletions testbed/tests/trace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,28 +226,28 @@ func TestTraceBallast1kSPSWithAttrs(t *testing.T) {
attrCount: 0,
attrSizeByte: 0,
expectedMaxCPU: 30,
expectedMaxRAM: 2000,
expectedMaxRAM: 2200,
resultsSummary: performanceResultsSummary,
},
{
attrCount: 100,
attrSizeByte: 50,
expectedMaxCPU: 80,
expectedMaxRAM: 2000,
expectedMaxRAM: 2200,
resultsSummary: performanceResultsSummary,
},
{
attrCount: 10,
attrSizeByte: 1000,
expectedMaxCPU: 80,
expectedMaxRAM: 2000,
expectedMaxRAM: 2200,
resultsSummary: performanceResultsSummary,
},
{
attrCount: 20,
attrSizeByte: 5000,
expectedMaxCPU: 120,
expectedMaxRAM: 2000,
expectedMaxRAM: 2200,
resultsSummary: performanceResultsSummary,
},
}, nil, map[string]string{"memory_ballast": ballastExtCfg})
Expand Down