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

Benchmark for scaling in N of independent resources #1041

Merged
merged 22 commits into from
Jul 15, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix test compilation
  • Loading branch information
t0yv0 committed Jul 8, 2021
commit 0fbf00d867feb1b084e447bf40612def3bb18077
2 changes: 1 addition & 1 deletion misc/test/performance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestGoManyResources(t *testing.T) {
benchmark := bench(fmt.Sprintf("%s-%d-ALPHA-V1", folder, resourceCount), "", "go", "go")
opts := integration.ProgramTestOptions{
Dir: path.Join(getCwd(t), "..", "..", folder),
Env: map[string]string{"RESOURCE_COUNT": fmt.Sprintf("%d", resourceCount)},
Env: []string{fmt.Sprintf("RESOURCE_COUNT=%d", resourceCount)},
ExtraRuntimeValidation: func(t *testing.T, stack integration.RuntimeValidationStackInfo) {
assert.Equal(t, stack.Outputs, resourceCount)
output1, gotOutput1 := stack.Outputs["output-1"]
Expand Down