Skip to content

Commit 12073df

Browse files
authored
Merge pull request #10892 from The-OpenROAD-Project-staging/fix-bazel-flow-tests
Fix Bazel flow (BIG_TESTS) integration tests
2 parents 58de265 + a65609d commit 12073df

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,5 +209,5 @@ py_test(
209209
test_suite(
210210
name = "flow_tests",
211211
tags = ["manual"],
212-
tests = [test_name + "-tcl" for test_name in BIG_TESTS],
212+
tests = [test_name + "-tcl_test" for test_name in BIG_TESTS],
213213
)

test/flow_helpers.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ proc read_libraries { } {
1313
set corners [sta::scenes]
1414
if { [llength $corners] > 1 } {
1515
foreach corner $corners {
16-
set corner_name [$corner name]
16+
set corner_name [get_name $corner]
1717
set corner_index [lsearch $liberty_files $corner_name]
1818
if { $corner_index == -1 } {
1919
error "No liberty file in \$liberty_files for corner $corner_name."

0 commit comments

Comments
 (0)