diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-19 18:45:44 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-19 18:45:44 -0500 |
| commit | af3d0ad1926eb825f64152cf217fc9a4777f0be3 (patch) | |
| tree | 8d7f73ce6c3c89863418382d8d553a06c668bbb3 /willow/unittest/IR/BUILD.bazel | |
| parent | d11fbc8268f5775ad783f8570478daad4a9e81cf (diff) | |
| download | compiler-af3d0ad1926eb825f64152cf217fc9a4777f0be3.tar.gz | |
[willow]: more cleanup, testsmore-tests
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" ], ) |