mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
896ee0c1f0
I recently enabled --test_verbose_timeout_warnings and that caused a bunch of warnings in our build. This fixes it, and adds a utility for us or others to make test-wrapping macros that set to short by default.
52 lines
1 KiB
Python
52 lines
1 KiB
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
load("//lib:diff_test.bzl", "diff_test")
|
|
load("//lib:copy_to_directory.bzl", "copy_to_directory")
|
|
load("//lib:copy_to_bin.bzl", "copy_to_bin")
|
|
load(":lib.bzl", "lib")
|
|
load(":pkg.bzl", "pkg")
|
|
|
|
copy_to_bin(
|
|
name = "copy_1",
|
|
srcs = ["1"],
|
|
)
|
|
|
|
lib(
|
|
name = "lib",
|
|
srcs = ["1"],
|
|
# intentionally dup on "1" to make sure it is gracefully handled
|
|
others = [
|
|
"1",
|
|
# also pass in a copy_to_bin copy of "1" to spice things up;
|
|
# this case is handled in the fix in https://github.com/aspect-build/bazel-lib/pull/205
|
|
"copy_1",
|
|
"2",
|
|
],
|
|
)
|
|
|
|
# pkg should copy DefaultInfo files and OtherInfo files
|
|
pkg(
|
|
name = "pkg",
|
|
srcs = [":lib"],
|
|
out = "pkg",
|
|
)
|
|
|
|
copy_to_directory(
|
|
name = "expected_pkg",
|
|
srcs = [
|
|
"1",
|
|
"2",
|
|
],
|
|
)
|
|
|
|
diff_test(
|
|
name = "test",
|
|
file1 = ":pkg",
|
|
file2 = ":expected_pkg",
|
|
)
|
|
|
|
bzl_library(
|
|
name = "other_info",
|
|
srcs = ["other_info.bzl"],
|
|
visibility = ["//visibility:public"],
|
|
)
|