forked from The-OpenROAD-Project/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: James Cherry <[email protected]>
- Loading branch information
1 parent
049d039
commit 74b5e32
Showing
4 changed files
with
127 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# OpenSTA, Static Timing Analyzer | ||
# Copyright (c) 2022, Parallax Software, Inc. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
# Regression variables. | ||
|
||
# Application program to run tests on. | ||
set app "sta" | ||
set sta_dir [file dirname $test_dir] | ||
set app_path [file join $sta_dir "app" $app] | ||
# Application options. | ||
set app_options "-no_init -no_splash -exit" | ||
# Log files for each test are placed in result_dir. | ||
set result_dir [file join $test_dir "results"] | ||
# Collective diffs. | ||
set diff_file [file join $result_dir "diffs"] | ||
# File containing list of failed tests. | ||
set failure_file [file join $result_dir "failures"] | ||
# Use the DIFF_OPTIONS envar to change the diff options | ||
# (Solaris diff doesn't support this envar) | ||
set diff_options "-c" | ||
if [info exists env(DIFF_OPTIONS)] { | ||
set diff_options $env(DIFF_OPTIONS) | ||
} | ||
|
||
set valgrind_suppress [file join $test_dir valgrind.suppress] | ||
set valgrind_options "--num-callers=20 --leak-check=full --freelist-vol=100000000 --leak-resolution=high --suppressions=$valgrind_suppress" | ||
if { [exec "uname"] == "Darwin" } { | ||
append valgrind_options " --dsymutil=yes" | ||
} | ||
|
||
proc cleanse_logfile { test log_file } { | ||
# Nothing to be done here. | ||
} | ||
|
||
################################################################ | ||
|
||
# Record a test in the regression suite. | ||
proc record_test { test cmd_dir } { | ||
global cmd_dirs test_groups | ||
set cmd_dirs($test) $cmd_dir | ||
lappend test_groups(all) $test | ||
return $test | ||
} | ||
|
||
# Record a test in the $STA/examples directory. | ||
proc record_example_tests { tests } { | ||
global test_dir test_groups | ||
set example_dir [file join $test_dir ".." "examples"] | ||
foreach test $tests { | ||
# Prune commented tests from the list. | ||
if { [string index $test 0] != "#" } { | ||
record_test $test $example_dir | ||
} | ||
} | ||
} | ||
|
||
################################################################ | ||
|
||
proc define_test_group { name tests } { | ||
global test_groups | ||
set test_groups($name) $tests | ||
} | ||
|
||
proc group_tests { name } { | ||
global test_groups | ||
return $test_groups($name) | ||
} | ||
|
||
# Clear the test lists. | ||
proc clear_tests {} { | ||
global test_groups | ||
unset test_groups | ||
} | ||
|
||
proc list_delete { list delete } { | ||
set result {} | ||
foreach item $list { | ||
if { [lsearch $delete $item] == -1 } { | ||
lappend result $item | ||
} | ||
} | ||
return $result | ||
} | ||
|
||
################################################################ | ||
|
||
# Regression test lists. | ||
|
||
# Record tests in sta/examples | ||
record_example_tests { | ||
example1 | ||
example2 | ||
example3 | ||
example4 | ||
example5 | ||
} | ||
|
||
define_test_group fast [group_tests all] |