summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/network/BUILD
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-09-02 11:20:45 -0700
committergVisor bot <gvisor-bot@google.com>2020-09-02 11:22:17 -0700
commitb9b6660dc4ec0cee77bb30ac7a44c061ada1b3d6 (patch)
treefee986153a27c8cbef8002dc808fc8e4dc21b965 /test/benchmarks/network/BUILD
parent8ab08cdc01e2e4b36a050ffc3acad682aebaa7b5 (diff)
Add Docs to nginx benchmark.
Adds docs to nginx and refactors both Httpd and Nginx benchmarks. Key changes: - Add docs and make nginx tests the same as httpd (reverse, all docs, etc.). - Make requests scale on c * b.N -> a request per thread. This works well with both --test.benchtime=10m (do a run that lasts at least 10m) and --test.benchtime=10x (do b.N = 10). -- Remove a doc from both tests (1000Kb) as 1024Kb exists. PiperOrigin-RevId: 329751091
Diffstat (limited to 'test/benchmarks/network/BUILD')
-rw-r--r--test/benchmarks/network/BUILD11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/benchmarks/network/BUILD b/test/benchmarks/network/BUILD
index bd3f6245c..472b5c387 100644
--- a/test/benchmarks/network/BUILD
+++ b/test/benchmarks/network/BUILD
@@ -5,8 +5,15 @@ package(licenses = ["notice"])
go_library(
name = "network",
testonly = 1,
- srcs = ["network.go"],
- deps = ["//test/benchmarks/harness"],
+ srcs = [
+ "network.go",
+ "static_server.go",
+ ],
+ deps = [
+ "//pkg/test/dockerutil",
+ "//test/benchmarks/harness",
+ "//test/benchmarks/tools",
+ ],
)
go_test(