summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/fs/BUILD
blob: dc82e63b2a904addf516b32446f58e6b3cb1a68a (plain)
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",
    ],
)