Skip to content

Commit a0230a4

Browse files
committed
global route: clean out vestiges from before .odb contained drc information
Detailed route now calls grt::have_routes to check if global route succeeded, no need to mess around with length of .rpt files to communicate success/failure Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 222d7e8 commit a0230a4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

flow/scripts/global_route.tcl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ proc global_route_helper { } {
2222
set result [catch { do_global_route } errMsg]
2323

2424
if { $result != 0 } {
25-
if {
26-
[expr !$::env(GENERATE_ARTIFACTS_ON_FAILURE) || \
27-
![file exists $::global_route_congestion_report] || \
28-
[file size $::global_route_congestion_report] == 0]
29-
} {
25+
if { !$::env(GENERATE_ARTIFACTS_ON_FAILURE) } {
3026
write_db $::env(RESULTS_DIR)/5_1_grt-failed.odb
3127
error $errMsg
3228
}

0 commit comments

Comments
 (0)