mirror of
https://github.com/The-OpenROAD-Project/OpenROAD.git
synced 2026-06-02 01:08:34 +08:00
23 lines
574 B
Tcl
Executable File
23 lines
574 B
Tcl
Executable File
#! /bin/sh
|
|
# The next line is executed by /bin/sh, but not Tcl \
|
|
exec tclsh $0 ${1+"$@"}
|
|
|
|
## SPDX-License-Identifier: BSD-3-Clause
|
|
## Copyright (c) 2019-2026, The OpenROAD Authors
|
|
|
|
# Usage: save_flow_metrics | test1 [test2...]
|
|
|
|
# Directory containing tests.
|
|
set test_dir [file dirname [file normalize [info script]]]
|
|
set openroad_dir [file dirname $test_dir]
|
|
|
|
source [file join $test_dir "regression.tcl"]
|
|
source [file join $test_dir "regression_tests.tcl"]
|
|
source [file join $test_dir "flow_metrics.tcl"]
|
|
|
|
save_flow_metric_limits_main
|
|
|
|
# Local Variables:
|
|
# mode:tcl
|
|
# End:
|