mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Tests: Fix missing stdout on execute()
This commit is contained in:
parent
9b9a554489
commit
77fc771ed0
@ -1330,7 +1330,7 @@ class VlTest:
|
||||
'expect_filename': None,
|
||||
'fails': False,
|
||||
'run_env': '',
|
||||
'tee': False,
|
||||
'tee': True,
|
||||
}
|
||||
param.update(vars(self))
|
||||
param.update(kwargs)
|
||||
@ -1728,7 +1728,7 @@ class VlTest:
|
||||
with open(logfile, 'r', encoding="utf8") as fh:
|
||||
firstline = fh.read()
|
||||
firstline = firstline.strip()
|
||||
firstline = re.sub(r'(^|\n)- [^\n]+', '\1', firstline) # Debug message
|
||||
firstline = re.sub(r'(^|\n)- [^\n]+', r'\1', firstline) # Debug message
|
||||
self.error("Exec of " + cmd[0] + " failed: " + firstline)
|
||||
if fails and status:
|
||||
print("(Exec expected to fail, and did.)")
|
||||
|
Loading…
Reference in New Issue
Block a user