Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 3 additions & 6 deletions src/dbSta/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ load("//test:regression.bzl", "regression_test")
package(features = ["layering_check"])

# From CMakeLists.txt or_integration_tests(TESTS
COMPULSORY_TESTS = [
ALL_TESTS = [
"block_sta1",
"check_axioms",
"clock_pin",
"constant1",
# "escape_slash", # different result compared to CMake
# "escape_slash_hier", # different result compared to CMake
"escape_slash",
"escape_slash_hier",
"find_clks1",
"find_clks2",
"get_ports1",
Expand Down Expand Up @@ -69,8 +69,6 @@ COMPULSORY_TESTS = [
"write_verilog9_hier",
]

ALL_TESTS = COMPULSORY_TESTS

filegroup(
name = "regression_resources",
# Dependencies could be specified more narrowly per test case,
Expand Down Expand Up @@ -177,7 +175,6 @@ filegroup(
regression_test(
name = test_name,
data = [":" + test_name + "_resources"],
tags = [] if test_name in COMPULSORY_TESTS else ["manual"],
visibility = ["//visibility:public"],
)
for test_name in ALL_TESTS
Expand Down
8 changes: 1 addition & 7 deletions src/pdn/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,6 @@ MANUAL_TESTS = [
"pdn_readme_msgs_check",
]

# TODO: Enable once difference between bazel and ctest is resolved.
MANUAL_FOR_BAZEL_TESTS = [
"pads_black_parrot_flipchip_connect_overpads",
]

ALL_TESTS = COMPULSORY_TESTS + MANUAL_TESTS

filegroup(
Expand Down Expand Up @@ -301,8 +296,7 @@ filegroup(
regression_test(
name = test_name,
data = [":" + test_name + "_resources"],
tags = ["manual"] if test_name in MANUAL_TESTS or
test_name in MANUAL_FOR_BAZEL_TESTS else [],
tags = ["manual"] if test_name in MANUAL_TESTS else [],
visibility = ["//visibility:public"],
)
for test_name in ALL_TESTS
Expand Down
18 changes: 2 additions & 16 deletions src/rsz/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ TESTS = [
"repair_tie8",
"repair_tie9",
"repair_tie10_hier",
"repair_tie11_hier",
"repair_tie12_hier",
"repair_wire1",
"repair_wire10",
"repair_wire11",
Expand Down Expand Up @@ -230,27 +232,11 @@ BIG_TESTS = [
"repair_fanout6",
]

# TODO: Enable once difference between bazel and ctest is resolved.
MANUAL_FOR_BAZEL_TESTS = [
"repair_tie11_hier",
"repair_tie12_hier",
"pinswap_flat",
"pinswap_hier",
"repair_fanout1_hier",
"repair_fanout2_hier",
"repair_fanout3_hier",
"repair_setup2",
"repair_setup4_flat",
"repair_setup4_hier",
"split_load_hier",
]

[
regression_test(
name = test_name,
size = "large" if test_name in BIG_TESTS else "medium",
data = [":test_resources"] + extra_deps.get(test_name, []),
tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [],
)
for test_name in TESTS
]
Expand Down
2 changes: 1 addition & 1 deletion src/utl/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ COMPULSORY_TESTS = [
"tee",
"tee_fails",
"test_error",
"test_error_exception",
"test_info",
"test_metrics",
"test_suppress_message",
]

# Disabled in CMakeLists.txt
MANUAL_TESTS = [
"test_error_exception",
"utl_man_tcl_check",
"utl_readme_msgs_check",
]
Expand Down