added a todo to riscv-wally so that long buildroot looks for a successful boot rather than a specific instruction

This commit is contained in:
slmnemo 2022-05-25 17:40:57 -07:00
parent 012cb7439d
commit a2300f063d

View File

@ -46,7 +46,7 @@ configs = [
]
def getBuildrootTC(short):
INSTR_LIMIT = 4000000 # multiple of 100000; 4M is interesting because it gets into the kernel and enabling VM
MAX_EXPECTED = 246000000
MAX_EXPECTED = 246000000 # *** TODO: replace this with a search for the login prompt.
if short:
BRcmd="vsim > {} -c <<!\ndo wally-pipelined-batch.do buildroot buildroot $RISCV "+str(INSTR_LIMIT)+" 1 0\n!"
BRgrepstr=str(INSTR_LIMIT)+" instructions"