Skip to content

Commit

Permalink
build(zk): add missing change from 5e9f0cf
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTaehoonKim authored and ashjeong committed Apr 22, 2024
1 parent c5bc4f6 commit 74f90ad
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tachyon/zk/plonk/examples/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//bazel:tachyon_cc.bzl", "tachyon_cc_library", "tachyon_cc_test")
load("//bazel:tachyon_cc.bzl", "tachyon_cc_library", "tachyon_cc_unittest")

package(default_visibility = ["//visibility:public"])

Expand Down Expand Up @@ -54,9 +54,7 @@ tachyon_cc_library(
hdrs = ["simple_lookup_circuit_test_data.h"],
)

# TODO(dongchangYoo): This is failed in CI because of timeout, 60 secs.
# Change |tachyon_cc_test| to |tachyon_cc_unittest| once CI can run within the timeout.
tachyon_cc_test(
tachyon_cc_unittest(
name = "shuffle_circuit_test",
srcs = ["shuffle_circuit_test.cc"],
deps = [
Expand All @@ -74,7 +72,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_circuit_test",
srcs = ["simple_circuit_test.cc"],
deps = [
Expand All @@ -88,7 +86,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_lookup_circuit_test",
srcs = ["simple_lookup_circuit_test.cc"],
deps = [
Expand All @@ -102,7 +100,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_lookup_v1_circuit_test",
srcs = ["simple_lookup_v1_circuit_test.cc"],
deps = [
Expand All @@ -117,7 +115,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_v1_circuit_test",
srcs = ["simple_v1_circuit_test.cc"],
deps = [
Expand Down

0 comments on commit 74f90ad

Please sign in to comment.