diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-24 12:43:13 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-24 12:43:13 -0500 |
| commit | 692fc6906c9f523334428d29afc187411fd59bf9 (patch) | |
| tree | 1084ffbe097bf1f822e11bac2d83f4a30e84ef67 /willow/tools/willowc/unittest/BUILD.bazel | |
| parent | 4b005e4a6e646c0b2788fc261097cdca2a93696c (diff) | |
| download | compiler-692fc6906c9f523334428d29afc187411fd59bf9.tar.gz | |
[willow][tools]: unit testing for tokenizer
Diffstat (limited to 'willow/tools/willowc/unittest/BUILD.bazel')
| -rw-r--r-- | willow/tools/willowc/unittest/BUILD.bazel | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/willow/tools/willowc/unittest/BUILD.bazel b/willow/tools/willowc/unittest/BUILD.bazel new file mode 100644 index 0000000..141bf82 --- /dev/null +++ b/willow/tools/willowc/unittest/BUILD.bazel @@ -0,0 +1,16 @@ +test_suite( + name = "unittest", + tests = [ + ":tokenizer" + ], +) + +cc_test( + name = "tokenizer", + srcs = ["TokenizerTest.cpp"], + deps = [ + "//willow/tools/willowc:willowc_lib", + "@catch2//:catch2_main" + ], + tags = ["tokenizer"] +) |