Skip to content

Commit

Permalink
run_sta: fix -blackbox_check not running when -multi_corner is …
Browse files Browse the repository at this point in the history
…not set (The-OpenROAD-Project#1980)

~ `scripts/tcl_commands/sta.tcl::run_sta`: fixed `-blackbox_check` having no effect if `-multi_corner` is not set
  • Loading branch information
kareefardi authored Sep 10, 2023
1 parent 023f667 commit 0e8827e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/tcl_commands/sta.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ proc run_sta {args} {
unset ::env(SAVE_SDF)
} else {
run_$arg_values(-tool)_script $::env(SCRIPTS_DIR)/openroad/sta/multi_corner.tcl {*}$arg_list
if { [info exists flags_map(-blackbox_check)] } {
blackbox_modules_check $log
}
}
if { [info exists flags_map(-blackbox_check)] } {
blackbox_modules_check $log
}
unset ::env(STA_MULTICORNER)
unset -nocomplain ::env(ESTIMATE_PARASITICS)
Expand Down

0 comments on commit 0e8827e

Please sign in to comment.