Skip to content

Commit ccc0bf1

Browse files
committed
Merge branch 'master' of https://github.com/The-OpenROAD-Project-private/OpenROAD-flow-scripts into secure-fix-bp-quad-rtl
2 parents 31c2a05 + e8c5451 commit ccc0bf1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flow/util/genElapsedTime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def print_log_dir_times(logdir, args):
4343

4444
# Loop on all log files in the directory
4545
for f in sorted(pathlib.Path(logdir).glob("**/*.log")):
46-
if "eqy_output" in str(f):
46+
if any(x in str(f) for x in ["eqy_output", "rsz_lec_check"]):
4747
continue
4848
# Extract Elapsed Time line from log file
4949
stem = os.path.splitext(os.path.basename(str(f)))[0]

0 commit comments

Comments
 (0)