16 lines
270 B
Python
16 lines
270 B
Python
import os
|
|
|
|
os.system("vsim -c -do ci.do")
|
|
|
|
with open("Transcript.transcript") as f:
|
|
content = f.read()
|
|
|
|
#Expected Errors
|
|
if "###ERROR###" in content:
|
|
exit(-1)
|
|
#Unexpected Errors
|
|
if "SIMULATIONS COMPLETED SUCCESSFULLY" not in content:
|
|
exit(-2)
|
|
#Success
|
|
else:
|
|
exit(0) |