diff options
Diffstat (limited to 'willow/unittest/IR/BUILD.bazel')
| -rw-r--r-- | willow/unittest/IR/BUILD.bazel | 13 |
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" ], ) |