aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/cpp/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/cpp/BUILD')
-rw-r--r--src/test/cpp/BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/cpp/BUILD b/src/test/cpp/BUILD
new file mode 100644
index 0000000000..594dcfb2f8
--- /dev/null
+++ b/src/test/cpp/BUILD
@@ -0,0 +1,16 @@
+# Description:
+# C++ utility tests for Bazel
+
+cc_test(
+ name = "blaze_util_test",
+ srcs = ["blaze_util_test.cc"],
+ deps = [
+ "//src/main/cpp:blaze_util",
+ "//src/main/cpp/util",
+ "//third_party:gtest",
+ ],
+)
+
+test_suite(
+ name = "all_tests",
+)