aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/binary_test_outputs/BUILD.bazel
blob: 1d34c4ca1108fc3df8773d2f3b1479c21b39f304 (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
# This test checks that go_binary and go_test produce a single output file.
# See documentation in single_output_test.bzl.

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
load("@io_bazel_rules_go//go/private/tools:single_output_test.bzl", "single_output_test")

single_output_test(
    name = "binary_single_output_test",
    size = "small",
    dep = ":bin",
)

go_binary(
    name = "bin",
    srcs = ["bin.go"],
    tags = ["manual"],
)

single_output_test(
    name = "test_single_output_test",
    size = "small",
    dep = ":test",
)

go_test(
    name = "test",
    size = "small",
    srcs = ["test.go"],
    tags = ["manual"],
)