summaryrefslogtreecommitdiff
path: root/willow/unittest/willow_unittest.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'willow/unittest/willow_unittest.bzl')
-rw-r--r--willow/unittest/willow_unittest.bzl8
1 files changed, 8 insertions, 0 deletions
diff --git a/willow/unittest/willow_unittest.bzl b/willow/unittest/willow_unittest.bzl
new file mode 100644
index 0000000..f1bb102
--- /dev/null
+++ b/willow/unittest/willow_unittest.bzl
@@ -0,0 +1,8 @@
+def willow_unittest(name, srcs, deps = [], tags = [], **kwargs):
+ native.cc_test(
+ name = name,
+ srcs = srcs,
+ deps = deps + ["@catch2//:catch2_main"],
+ tags = tags,
+ **kwargs
+ )