regression: use busybear batch instead

This commit is contained in:
Noah Boorstin 2021-03-25 15:34:10 -04:00
parent 56a32b5882
commit 05d362e334

View File

@ -25,7 +25,7 @@ def test_config(config, print_res=True):
logname = "wally_"+config+".log"
if config == "busybear":
# Handle busybear separately
cmd = "echo 'quit' | vsim -do wally-busybear.do -c >" + logname
cmd = "vsim -do wally-busybear-batch.do -c >" + logname
os.system(cmd)
# check for success. grep returns 0 if found, 1 if not found
passed = search_log_for_text("# loaded 800000 instructions", logname)