summaryrefslogtreecommitdiff
path: root/willow/unittest/IR/BUILD.bazel
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2026-02-19 18:51:48 -0500
committerGitHub <noreply@github.com>2026-02-19 18:51:48 -0500
commitc2d4209f85f46cc91163bc47cc43db252c94acf6 (patch)
tree8d7f73ce6c3c89863418382d8d553a06c668bbb3 /willow/unittest/IR/BUILD.bazel
parentd11fbc8268f5775ad783f8570478daad4a9e81cf (diff)
downloadcompiler-c2d4209f85f46cc91163bc47cc43db252c94acf6.tar.gz
[willow]: more cleanup, tests (#12)
Diffstat (limited to 'willow/unittest/IR/BUILD.bazel')
-rw-r--r--willow/unittest/IR/BUILD.bazel13
1 files changed, 12 insertions, 1 deletions
diff --git a/willow/unittest/IR/BUILD.bazel b/willow/unittest/IR/BUILD.bazel
index b41dfcd..e25efbf 100644
--- a/willow/unittest/IR/BUILD.bazel
+++ b/willow/unittest/IR/BUILD.bazel
@@ -8,9 +8,20 @@ cc_test(
tags = ["ir"]
)
+cc_test(
+ name = "instructions",
+ srcs = ["InstructionsTest.cpp"],
+ deps = [
+ "//willow",
+ "@catch2//:catch2_main"
+ ],
+ tags = ["ir"]
+)
+
test_suite(
name = "ir_tests",
tests = [
- ":verifier"
+ ":verifier",
+ ":instructions"
],
)