Avoid printing junk when running regression

This commit is contained in:
David Harris 2023-03-24 08:11:15 -07:00
parent d04f4cedf6
commit 5dfaf931e3

View File

@ -162,7 +162,7 @@ def run_test_case(config):
"""Run the given test case, and return 0 if the test suceeds and 1 if it fails"""
logname = "logs/"+config.variant+"_"+config.name+".log"
cmd = config.cmd.format(logname)
print(cmd)
# print(cmd)
os.chdir(regressionDir)
os.system(cmd)
if search_log_for_text(config.grepstr, logname):