Skip to content

Commit 67720e8

Browse files
Fishrock123Myles Borins
authored andcommitted
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 <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 6408be3 commit 67720e8

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tools/test.py

Lines changed: 1 addition & 0 deletions
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)