summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/fs/BUILD
blob: 021fae38d340d36bf587bd30627bbf4b1cd33dfc (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
load("//tools:defs.bzl", "go_test")

package(licenses = ["notice"])

go_test(
    name = "bazel_test",
    size = "enormous",
    srcs = ["bazel_test.go"],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/test/dockerutil",
        "//test/benchmarks/harness",
        "//test/benchmarks/tools",
    ],
)

go_test(
    name = "fio_test",
    size = "enormous",
    srcs = ["fio_test.go"],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/test/dockerutil",
        "//test/benchmarks/harness",
        "//test/benchmarks/tools",
        "@com_github_docker_docker//api/types/mount:go_default_library",
    ],
)