Skip to content

Commit

Permalink
make bazel happy by adding size specifiers for the op tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mars-risc0 committed Dec 17, 2024
1 parent baea459 commit 83fd0ac
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions zirgen/circuit/bigint/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -28,65 +28,76 @@ cc_test(
name = "const_add",
srcs = ["const_add.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "const_add_alt",
srcs = ["const_add_alt.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "const_mul",
srcs = ["const_mul.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "add",
srcs = ["add.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "const_one",
srcs = ["const_one.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "const_twobyte",
srcs = ["const_twobyte.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "sub",
srcs = ["sub.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "mul",
srcs = ["mul.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "reduce",
srcs = ["reduce.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "nondet_inv",
srcs = ["nondet_inv.cpp"],
deps = [":bibc_utils"],
size = "small",
)

cc_test(
name = "rsa",
srcs = ["rsa.cpp"],
deps = [":bibc_utils"],
size = "small",
)

0 comments on commit 83fd0ac

Please sign in to comment.