mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Tests: Fix driver error report, and passing --dumpi-tree
This commit is contained in:
parent
99a29acca0
commit
c8de3630a5
@ -1695,7 +1695,7 @@ class VlTest:
|
|||||||
if got:
|
if got:
|
||||||
data = rawbuf[0:got]
|
data = rawbuf[0:got]
|
||||||
if tee:
|
if tee:
|
||||||
sys.stdout.write(data.decode())
|
sys.stdout.write(data.decode('latin-1'))
|
||||||
if interactive_debugger:
|
if interactive_debugger:
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
if logfh:
|
if logfh:
|
||||||
@ -1726,9 +1726,12 @@ class VlTest:
|
|||||||
firstline = ""
|
firstline = ""
|
||||||
if logfile:
|
if logfile:
|
||||||
with open(logfile, 'r', encoding="utf8") as fh:
|
with open(logfile, 'r', encoding="utf8") as fh:
|
||||||
firstline = fh.read()
|
for line in fh:
|
||||||
firstline = firstline.strip()
|
line = line.rstrip()
|
||||||
firstline = re.sub(r'(^|\n)- [^\n]+', r'\1', firstline) # Debug message
|
if re.match(r'^- ', line): # Debug message
|
||||||
|
continue
|
||||||
|
firstline = line
|
||||||
|
break
|
||||||
self.error("Exec of " + cmd[0] + " failed: " + firstline)
|
self.error("Exec of " + cmd[0] + " failed: " + firstline)
|
||||||
if fails and status:
|
if fails and status:
|
||||||
print("(Exec expected to fail, and did.)")
|
print("(Exec expected to fail, and did.)")
|
||||||
@ -2629,7 +2632,7 @@ def max_procs() -> int:
|
|||||||
def _parameter(param: str) -> None:
|
def _parameter(param: str) -> None:
|
||||||
global _Parameter_Next_Level
|
global _Parameter_Next_Level
|
||||||
if _Parameter_Next_Level:
|
if _Parameter_Next_Level:
|
||||||
if not re.match(r'^(\d+)$', _Parameter_Next_Level):
|
if not re.match(r'^(\d+)$', param):
|
||||||
sys.exit("%Error: Expected number following " + _Parameter_Next_Level + ": " + param)
|
sys.exit("%Error: Expected number following " + _Parameter_Next_Level + ": " + param)
|
||||||
Arg_Driver_Verilator_Flags.append(param)
|
Arg_Driver_Verilator_Flags.append(param)
|
||||||
_Parameter_Next_Level = None
|
_Parameter_Next_Level = None
|
||||||
|
Loading…
Reference in New Issue
Block a user