Skip to content

Commit 901d92a

Browse files
committed
rm unused MANUAL_FOR_BAZEL_TESTS
Fixes #8610 Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
1 parent 9a2876e commit 901d92a

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

src/grt/test/BUILD

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,9 @@ filegroup(
140140
),
141141
)
142142

143-
# TODO: Enable once difference between bazel and ctest is resolved.
144-
MANUAL_FOR_BAZEL_TESTS = [
145-
]
146-
147143
[regression_test(
148144
name = test_name,
149145
data = [":test_resources"],
150-
tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [],
151146
) for test_name in TESTS]
152147

153148
regression_test(

test/BUILD

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,6 @@ COMPULSORY_TESTS = [
142142
"write_db",
143143
] + PASSFAIL_TESTS
144144

145-
# TODO: Enable once difference between bazel and ctest is resolved.
146-
MANUAL_FOR_BAZEL_TESTS = [
147-
]
148-
149145
PYTHON_TESTS = [
150146
"timing_api",
151147
"timing_api_2",
@@ -195,7 +191,7 @@ BIG_TESTS = [
195191
check_log = False if test_name in PASSFAIL_TESTS + BIG_TESTS + ["upf_aes"] else True,
196192
check_passfail = True if test_name in PASSFAIL_TESTS else False,
197193
data = ["//src/odb/test:design_odb_data"] if test_name == "two_designs" else [],
198-
tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS + BIG_TESTS else [],
194+
tags = ["manual"] if test_name in BIG_TESTS else [],
199195
)
200196
for test_name in COMPULSORY_TESTS + PYTHON_TESTS + BIG_TESTS
201197
]

0 commit comments

Comments
 (0)