summaryrefslogtreecommitdiffstats
path: root/test/BUILD
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:44:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:44:33 +0000
commitb196c6498d22e47bb9d0da0153068ec54eac7956 (patch)
tree1a994a492581e93224a7ee6455f5d4e9d2ec8e59 /test/BUILD
parentInitial commit. (diff)
downloadopentracing-cpp-b196c6498d22e47bb9d0da0153068ec54eac7956.tar.xz
opentracing-cpp-b196c6498d22e47bb9d0da0153068ec54eac7956.zip
Adding upstream version 1.6.0.upstream/1.6.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--test/BUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/BUILD b/test/BUILD
new file mode 100644
index 0000000..ce9077b
--- /dev/null
+++ b/test/BUILD
@@ -0,0 +1,27 @@
+TEST_NAMES = [
+ "string_view_test",
+ "tracer_test",
+ "util_test",
+ "value_test",
+]
+
+[cc_test(
+ name = test_name,
+ srcs = [test_name + ".cpp"],
+ deps = [
+ "//:opentracing",
+ "//3rd_party:catch2",
+ ],
+) for test_name in TEST_NAMES]
+
+cc_test(
+ name = "mutiple_tracer_link_test",
+ srcs = [
+ "multiple_tracer_link_test.cpp",
+ "tracer_a.cpp",
+ "tracer_b.cpp",
+ ],
+ deps = [
+ "//:opentracing",
+ ]
+)