Skip to content

Commit 614907e

Browse files
Fishrock123rvagg
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 b52d838 commit 614907e

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)