Skip to content

Commit f17e737

Browse files
committed
tools: print stderr on bad test.py vmArch check
This makes it so you can see why the check fails if it does. Typically that sort of thing can happen if you are modifying bootstrapping or `process`. PR-URL: #6786 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 6d71cbc commit f17e737

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,7 @@ def Main():
15411541
vmArch = archEngineContext.stdout.rstrip()
15421542
if archEngineContext.exit_code is not 0 or vmArch == "undefined":
15431543
print "Can't determine the arch of: '%s'" % vm
1544+
print archEngineContext.stderr.rstrip()
15441545
continue
15451546
env = {
15461547
'mode': mode,

0 commit comments

Comments
 (0)