Skip to content

Commit 140b84d

Browse files
Fishrock123Myles Borins
authored and
Myles Borins
committedJul 14, 2016
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 350f4cf commit 140b84d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎tools/test.py

+1
Original file line numberDiff line numberDiff line change
@@ -1571,6 +1571,7 @@ def Main():
15711571
vmArch = archEngineContext.stdout.rstrip()
15721572
if archEngineContext.exit_code is not 0 or vmArch == "undefined":
15731573
print "Can't determine the arch of: '%s'" % vm
1574+
print archEngineContext.stderr.rstrip()
15741575
continue
15751576
env = {
15761577
'mode': mode,

0 commit comments

Comments
 (0)
Please sign in to comment.