]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentracing-cpp/test/BUILD
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / opentracing-cpp / test / BUILD
CommitLineData
f67539c2
TL
1TEST_NAMES = [
2 "string_view_test",
3 "tracer_test",
4 "util_test",
5 "value_test",
6]
7
8[cc_test(
9 name = test_name,
10 srcs = [test_name + ".cpp"],
11 deps = [
12 "//:opentracing",
13 "//3rd_party:catch2",
14 ],
15) for test_name in TEST_NAMES]
16
17cc_test(
18 name = "mutiple_tracer_link_test",
19 srcs = [
20 "multiple_tracer_link_test.cpp",
21 "tracer_a.cpp",
22 "tracer_b.cpp",
23 ],
24 deps = [
25 "//:opentracing",
26 ]
27)