summaryrefslogtreecommitdiffhomepage
path: root/tools/go_marshal/test/BUILD
blob: 2fbcc8a03a7487a725950f5bf766d47b57f9927e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
load("//tools:defs.bzl", "go_library", "go_test")

licenses(["notice"])

package_group(
    name = "gomarshal_test",
    packages = [
        "//tools/go_marshal/test/...",
    ],
)

go_test(
    name = "benchmark_test",
    srcs = ["benchmark_test.go"],
    deps = [
        ":test",
        "//pkg/binary",
        "//pkg/usermem",
        "//tools/go_marshal/analysis",
    ],
)

go_library(
    name = "test",
    testonly = 1,
    srcs = ["test.go"],
    marshal = True,
    visibility = ["//tools/go_marshal/test:__subpackages__"],
    deps = ["//tools/go_marshal/test/external"],
)

go_test(
    name = "marshal_test",
    size = "small",
    srcs = ["marshal_test.go"],
    deps = [
        ":test",
        "//pkg/syserror",
        "//pkg/usermem",
        "//tools/go_marshal/analysis",
        "//tools/go_marshal/marshal",
        "@com_github_google_go-cmp//cmp:go_default_library",
    ],
)