cvw/wally-pipelined/regression/regression-wally.py

95 lines
3.2 KiB
Python
Raw Normal View History

2021-01-25 16:28:43 +00:00
#!/usr/bin/python3
##################################
#
# regression-wally.py
# David_Harris@Hmc.edu 25 January 2021
# Modified by Jarred Allen <jaallen@g.hmc.edu>
2021-01-25 16:28:43 +00:00
#
# Run a regression with multiple configurations in parallel and exit with
# non-zero status code if an error happened, as well as printing human-readable
# output.
2021-01-25 16:28:43 +00:00
#
##################################
2021-04-22 17:29:55 +00:00
from collections import namedtuple
TestCase = namedtuple("TestCase", ['name', 'cmd', 'grepstr'])
# name: the name of this test configuration (used in printing human-readable
# output and picking logfile names)
# cmd: the command to run to test (should include the logfile as '{}', and
# the command needs to write to that file)
# grepstr: the string to grep through the log file for. The test succeeds iff
# grep finds that string in the logfile (is used by grep, so it may
# be any pattern grep accepts, see `man 1 grep` for more info).
2021-04-22 17:29:55 +00:00
# edit this list to add more test cases
2021-04-22 17:29:55 +00:00
configs = [
TestCase(
2021-04-22 17:29:55 +00:00
name="busybear",
cmd="vsim -do wally-busybear-batch.do -c > {}",
grepstr="# loaded 40000 instructions"
2021-04-22 17:29:55 +00:00
),
TestCase(
2021-04-22 17:29:55 +00:00
name="buildroot",
cmd="vsim -do wally-buildroot-batch.do -c > {}",
grepstr="# loaded 100000 instructions"
),
TestCase(
2021-04-22 17:29:55 +00:00
name="rv32ic",
cmd="vsim > {} -c <<!\ndo wally-pipelined-batch.do ../config/rv32ic rv32ic\n!",
grepstr="All tests ran without failures"
),
TestCase(
2021-04-22 17:29:55 +00:00
name="rv64ic",
cmd="vsim > {} -c <<!\ndo wally-pipelined-batch.do ../config/rv64ic rv64ic\n!",
grepstr="All tests ran without failures"
),
TestCase(
2021-05-03 21:32:05 +00:00
name="lints",
cmd="../lint-wally > {}",
grepstr="All lints run with no errors or warnings"
),
2021-04-22 17:29:55 +00:00
]
2021-01-25 16:28:43 +00:00
2021-02-01 20:40:27 +00:00
import multiprocessing, os
2021-01-25 16:28:43 +00:00
2021-02-02 22:20:45 +00:00
def search_log_for_text(text, logfile):
"""Search through the given log file for text, returning True if it is found or False if it is not"""
grepcmd = "grep -e '%s' '%s' > /dev/null" % (text, logfile)
return os.system(grepcmd) == 0
def run_test_case(case):
"""Run the given test case, and return 0 if the test suceeds and 1 if it fails"""
logname = "regression_logs/wally_"+case.name+".log"
cmd = case.cmd.format(logname)
print(cmd)
os.system(cmd)
if search_log_for_text(case.grepstr, logname):
print("%s: Success" % logname)
2021-04-22 17:29:55 +00:00
return 0
else:
print("%s: failures detected" % logname)
2021-04-22 17:29:55 +00:00
return 1
2021-02-02 22:20:45 +00:00
def main():
"""Run the tests and count the failures"""
# Scale the number of concurrent processes to the number of test cases, but
# max out at 12 concurrent processes to not overwhelm the system
2021-05-06 16:56:57 +00:00
try:
os.mkdir("regression_logs")
except:
pass
pool = multiprocessing.Pool(min(len(configs), 12))
# Count the number of failures
num_fail = sum(pool.map(run_test_case, configs))
if num_fail:
print("Regression failed with %s failed configurations" % num_fail)
# Remind the user to try `make allclean`, since it may be needed if test
# cases have changed
print("Reminder: have you run `make allclean`?")
else:
print("SUCCESS! All tests ran without failures")
return num_fail
2021-01-25 16:28:43 +00:00
if __name__ == '__main__':
exit(main())