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
13 changes: 1 addition & 12 deletions src/cts/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,6 @@ MANUAL_TESTS = [
"cts_readme_msgs_check",
]

# TODO: Enable once difference between bazel and ctest is resolved.
MANUAL_FOR_BAZEL_TESTS = [
"array",
"array_ins_delay",
"array_no_blockages",
"array_repair_clock_nets",
"gated_clock4",
"simple_test_hier",
]

ALL_TESTS = COMPULSORY_TESTS + MANUAL_TESTS

filegroup(
Expand Down Expand Up @@ -185,8 +175,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
13 changes: 1 addition & 12 deletions src/dpl/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,6 @@ MANUAL_TESTS = [
"dpl_readme_msgs_check",
]

# TODO: Enable once difference between bazel and ctest is resolved.
MANUAL_FOR_BAZEL_TESTS = [
"aes",
"cell_on_block2",
"gcd",
"ibex",
"mirror1",
"obstruction2",
]

ALL_TESTS = COMPULSORY_TESTS + MANUAL_TESTS

filegroup(
Expand Down Expand Up @@ -259,8 +249,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