Skip to content

Commit 70f6f79

Browse files
committed
ram/rsz: disable tests that are non-deterministic in bazel
Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
1 parent f7b05a5 commit 70f6f79

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

src/ram/test/BUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ package(features = ["layering_check"])
66

77
# From CMakeLists.txt or_integration_tests(TESTS
88
COMPULSORY_TESTS = [
9+
]
10+
11+
MANUAL_FOR_BAZEL_TESTS = [
912
"make_8x8",
1013
]
1114

@@ -53,7 +56,7 @@ filegroup(
5356
regression_test(
5457
name = test_name,
5558
data = [":" + test_name + "_resources"],
56-
tags = [] if test_name in COMPULSORY_TESTS else ["manual"],
59+
tags = ["manual"] if test_name in MANUAL_FOR_BAZEL_TESTS else [],
5760
visibility = ["//visibility:public"],
5861
)
5962
for test_name in ALL_TESTS

src/rsz/test/BUILD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ TESTS = [
3434
"gain_buffering1_hier",
3535
"gcd_resize",
3636
"liberty_dont_use",
37-
"pin_swap1",
3837
"pinswap_flat",
3938
"pinswap_hier",
4039
"rebuffer1",
@@ -152,12 +151,6 @@ TESTS = [
152151
"repair_wire9",
153152
"replace_arith_modules1",
154153
"replace_arith_modules2",
155-
"report_buffers_asap7",
156-
"report_buffers_gf180",
157-
"report_buffers_ihp",
158-
"report_buffers_nangate45",
159-
"report_buffers_sky130hd",
160-
"report_buffers_sky130hs",
161154
"report_design_area",
162155
"report_dont_touch",
163156
"report_dont_use",
@@ -226,6 +219,13 @@ BIG_TESTS = [
226219

227220
# TODO: Enable once difference between bazel and ctest is resolved.
228221
MANUAL_FOR_BAZEL_TESTS = [
222+
"report_buffers_asap7",
223+
"report_buffers_gf180",
224+
"report_buffers_ihp",
225+
"report_buffers_nangate45",
226+
"report_buffers_sky130hd",
227+
"report_buffers_sky130hs",
228+
"pin_swap1",
229229
"liberty_dont_use",
230230
"pinswap_flat",
231231
"pinswap_hier",

0 commit comments

Comments
 (0)