about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-data/BUILD.bazel
blob: 200498f6401850bf6b3376f70b7a97b409abc5c2 (plain) (blame)
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(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

package(default_testonly = 1)

# XXX: on Windows those tests need `--experimental_enable_runfiles` to succeed
# XXX: see: https://github.com/tweag/rules_haskell/issues/647#issuecomment-459001362

haskell_test(
    name = "bin1",
    srcs = ["bin1.hs"],
    # Regular file input:
    data = ["bin1-input"],
    visibility = ["//visibility:public"],
    deps = ["//tests/hackage:base"],
)

haskell_test(
    name = "binary-with-data",
    srcs = ["bin2.hs"],
    args = ["$(location :bin1)"],
    data = [":bin1"],
    tags = ["requires_hackage"],
    visibility = ["//visibility:public"],
    deps = [
        "//tests/hackage:base",
        "//tests/hackage:process",
    ],
)