From 9d386221c9d6265f8ab85b42fcb93b4a0cafbb54 Mon Sep 17 00:00:00 2001 From: sweiglbosker Date: Tue, 24 Feb 2026 13:04:50 -0500 Subject: [willow][tools]: unit testing for tokenizer (#14) --- willow/tools/willowc/unittest/BUILD.bazel | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 willow/tools/willowc/unittest/BUILD.bazel (limited to 'willow/tools/willowc/unittest/BUILD.bazel') 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"] +) -- cgit v1.2.3