Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/ram/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ package(features = ["layering_check"])

# From CMakeLists.txt or_integration_tests(TESTS
COMPULSORY_TESTS = [
]

MANUAL_FOR_BAZEL_TESTS = [
"make_8x8",
]

Expand Down Expand Up @@ -53,7 +56,7 @@ filegroup(
regression_test(
name = test_name,
data = [":" + test_name + "_resources"],
tags = [] if test_name in COMPULSORY_TESTS else ["manual"],
tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [],
visibility = ["//visibility:public"],
)
for test_name in ALL_TESTS
Expand Down
14 changes: 7 additions & 7 deletions src/rsz/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ TESTS = [
"gain_buffering1_hier",
"gcd_resize",
"liberty_dont_use",
"pin_swap1",
"pinswap_flat",
"pinswap_hier",
"rebuffer1",
Expand Down Expand Up @@ -152,12 +151,6 @@ TESTS = [
"repair_wire9",
"replace_arith_modules1",
"replace_arith_modules2",
"report_buffers_asap7",
"report_buffers_gf180",
"report_buffers_ihp",
"report_buffers_nangate45",
"report_buffers_sky130hd",
"report_buffers_sky130hs",
"report_design_area",
"report_dont_touch",
"report_dont_use",
Expand Down Expand Up @@ -226,6 +219,13 @@ BIG_TESTS = [

# TODO: Enable once difference between bazel and ctest is resolved.
MANUAL_FOR_BAZEL_TESTS = [
"report_buffers_asap7",
"report_buffers_gf180",
"report_buffers_ihp",
"report_buffers_nangate45",
"report_buffers_sky130hd",
"report_buffers_sky130hs",
"pin_swap1",
"liberty_dont_use",
"pinswap_flat",
"pinswap_hier",
Expand Down