summaryrefslogtreecommitdiff
path: root/willow/unittest/IR/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'willow/unittest/IR/BUILD.bazel')
-rw-r--r--willow/unittest/IR/BUILD.bazel16
1 files changed, 16 insertions, 0 deletions
diff --git a/willow/unittest/IR/BUILD.bazel b/willow/unittest/IR/BUILD.bazel
new file mode 100644
index 0000000..b41dfcd
--- /dev/null
+++ b/willow/unittest/IR/BUILD.bazel
@@ -0,0 +1,16 @@
+cc_test(
+ name = "verifier",
+ srcs = ["VerifierTest.cpp"],
+ deps = [
+ "//willow",
+ "@catch2//:catch2_main"
+ ],
+ tags = ["ir"]
+)
+
+test_suite(
+ name = "ir_tests",
+ tests = [
+ ":verifier"
+ ],
+)