1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
load("//test/benchmarks:defs.bzl", "benchmark_test")
package(licenses = ["notice"])
benchmark_test(
name = "bazel_test",
size = "enormous",
srcs = ["bazel_test.go"],
visibility = ["//:sandbox"],
deps = [
"//pkg/cleanup",
"//pkg/test/dockerutil",
"//test/benchmarks/harness",
"//test/benchmarks/tools",
"@com_github_docker_docker//api/types/mount:go_default_library",
],
)
benchmark_test(
name = "fio_test",
size = "enormous",
srcs = ["fio_test.go"],
visibility = ["//:sandbox"],
deps = [
"//pkg/cleanup",
"//pkg/test/dockerutil",
"//test/benchmarks/harness",
"//test/benchmarks/tools",
"@com_github_docker_docker//api/types/mount:go_default_library",
],
)
|