summaryrefslogtreecommitdiff
path: root/willow/unittest/IR/BUILD.bazel
blob: e25efbf5c234410130165608180005428803f630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
cc_test(
  name = "verifier",
  srcs = ["VerifierTest.cpp"],
  deps = [
    "//willow",
    "@catch2//:catch2_main"
  ],
  tags = ["ir"]
)

cc_test(
  name = "instructions",
  srcs = ["InstructionsTest.cpp"],
  deps = [
    "//willow",
    "@catch2//:catch2_main"
  ],
  tags = ["ir"]
)

test_suite(
  name = "ir_tests",
  tests = [
    ":verifier",
    ":instructions"
  ],
)