Skip to content

Commit

Permalink
Merge pull request #265 from p0lyn0mial/e2e-encryption-perf-scaffolding
Browse files Browse the repository at this point in the history
adds scaffolding for e2e perf/load encryption tests
  • Loading branch information
openshift-merge-robot committed Nov 26, 2019
2 parents 164a16d + def91ea commit 74129eb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ clean:
GO_TEST_PACKAGES :=./pkg/... ./cmd/...

# these are extremely slow serial e2e encryption tests that modify the cluster's global state
.PHONY: test-e2e-encryption
test-e2e-encryption: GO_TEST_PACKAGES :=./test/e2e-encryption/...
test-e2e-encryption: GO_TEST_FLAGS += -v
test-e2e-encryption: GO_TEST_FLAGS += -timeout 4h
test-e2e-encryption: GO_TEST_FLAGS += -p 1
test-e2e-encryption: GO_TEST_FLAGS += -parallel 1
test-e2e-encryption: test-unit
.PHONY: test-e2e-encryption

test-e2e-encryption-perf: GO_TEST_PACKAGES :=./test/e2e-encryption-perf/...
test-e2e-encryption-perf: GO_TEST_FLAGS += -v
test-e2e-encryption-perf: GO_TEST_FLAGS += -timeout 1h
test-e2e-encryption-perf: GO_TEST_FLAGS += -p 1
test-e2e-encryption-perf: test-unit
.PHONY: test-e2e-encryption-perf

.PHONY: test-e2e
test-e2e: GO_TEST_PACKAGES :=./test/e2e/...
Expand Down
7 changes: 7 additions & 0 deletions test/e2e-encryption-perf/encryption_perf_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package e2e_encryption_perf

import "testing"

func TestImplementMe(t *testing.T) {
t.Log("implement me")
}

0 comments on commit 74129eb

Please sign in to comment.