xref: /aosp_15_r20/external/bazelbuild-rules_rust/test/process_wrapper_bootstrap/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1load("//rust:defs.bzl", "rust_test")
2load(":process_wrapper_bootstrap_test.bzl", "process_wrapper_bootstrap_test_suite")
3
4rust_test(
5    name = "bootstrap_process_wrapper_test",
6    srcs = ["bootstrap_process_wrapper_test.rs"],
7    data = ["//util/process_wrapper/private:process_wrapper.sh"],
8    edition = "2021",
9    deps = ["//tools/runfiles"],
10)
11
12process_wrapper_bootstrap_test_suite(name = "process_wrapper_bootstrap_test_suite")
13