summaryrefslogtreecommitdiffhomepage
path: root/tools/go_generics/rules_tests/BUILD
blob: 2d9a6fa9d959b548b966105b6f6730d19c1e55d2 (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
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_test")
load("//tools/go_generics:defs.bzl", "go_template", "go_template_instance")

go_template_instance(
    name = "instance",
    out = "instance_test.go",
    consts = {
        "n": "20",
        "m": "\"test\"",
        "o": "math.MaxUint64",
    },
    imports = {
        "math": "math",
    },
    package = "template_test",
    template = ":test_template",
    types = {
        "t": "int",
    },
)

go_template(
    name = "test_template",
    srcs = [
        "template.go",
    ],
    opt_consts = [
        "n",
        "m",
        "o",
    ],
    opt_types = ["t"],
)

go_test(
    name = "template_test",
    srcs = [
        "instance_test.go",
        "template_test.go",
    ],
)