summaryrefslogtreecommitdiff
path: root/willow/tools/willowc/unittest/BUILD.bazel
blob: 141bf822c89e93b3a6e9f0376b55cfe15baf5849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]
)