假设我有一个单元测试,它使用dlopen从提供的共享库中加载和调用代码

int main(int argc, char* argv[]) {
  const char* library = argv[1];
  // calls dlopen with library and does some testing
}

给定已声明的库
cc_library(
    name = "a",
    srcs = ["a.cpp"],
    visibility = ["//visibility:public"],
)

有什么方法可以使用cc_test设置单元测试,使其以作为参数传递的库a的位置运行? (最好也以与平台无关的方式,这样我就不必担心库使用什么后缀)

最佳答案

您可能可以编写访问运行文件的自定义 lark 规则(相关讨论here)。

一起砍东西:

建立:

load("//:foo.bzl", "runfiles")

cc_binary(
    name = "liba.so",
    srcs = [ "a.cc" ],
    linkshared = 1,
)

runfiles(
    name = "runfiles",
    deps = [ ":liba.so" ],
)

foo.bzl:
def _impl(ctx):
  for dep in ctx.attr.deps:
    print(dep.files_to_run.executable.path)

runfiles = rule(
  implementation = _impl,
  attrs = {
    "deps": attr.label_list(allow_files=True),
  }
)

09-05 23:33