Added rv32i config for regression of wally32periph

This commit is contained in:
David Harris 2022-09-07 09:37:59 -07:00
parent d07c44bcf6
commit 29f015810b

View File

@ -82,7 +82,7 @@ for test in tests32gc:
grepstr="All tests ran without failures")
configs.append(tc)
tests32ic = ["arch32i", "arch32c", "imperas32i", "imperas32c", "wally32periph"]
tests32ic = ["arch32i", "arch32c", "imperas32i", "imperas32c"]
for test in tests32ic:
tc = TestCase(
name=test,
@ -91,6 +91,16 @@ for test in tests32ic:
grepstr="All tests ran without failures")
configs.append(tc)
tests32i = ["wally32periph"]
for test in tests32i:
tc = TestCase(
name=test,
variant="rv32i",
cmd="vsim > {} -c <<!\ndo wally-pipelined-batch.do rv32i "+test+"\n!",
grepstr="All tests ran without failures")
configs.append(tc)
tests32e = ["wally32e"]
for test in tests32e:
tc = TestCase(