Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(723)

Unified Diff: testing/xvfb.py

Issue 385073006: Improve tracing of xvfb.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Renamed variable Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/xvfb.py
===================================================================
--- testing/xvfb.py (revision 282630)
+++ testing/xvfb.py (working copy)
@@ -55,26 +55,27 @@
cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except OSError:
print >> sys.stderr, 'Failed to run %s' % ' '.join(cmd)
- return 0
- return proc.pid
+ return
+ return proc
def wait_for_xvfb(xdisplaycheck, env):
"""Waits for xvfb to be fully initialized by using xdisplaycheck."""
try:
- subprocess.check_call(
+ _logs = subprocess.check_output(
[xdisplaycheck],
- stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
env=env)
except OSError:
print >> sys.stderr, 'Failed to load %s with cwd=%s' % (
xdisplaycheck, os.getcwd())
return False
- except subprocess.CalledProcessError:
+ except subprocess.CalledProcessError as e:
print >> sys.stderr, (
- 'Xvfb failed to load properly while trying to run %s' % xdisplaycheck)
+ 'Xvfb failed to load properly (code %d) according to %s' %
+ (e.returncode, xdisplaycheck))
return False
+
return True
@@ -98,11 +99,22 @@
if sys.platform == 'linux2':
# Defaults to X display 9.
display = ':9'
- pid = start_xvfb(xvfb, display)
- if not pid:
+ xvfb_proc = start_xvfb(xvfb, display)
+ if not xvfb_proc or not xvfb_proc.pid:
return 1
env['DISPLAY'] = display
if not wait_for_xvfb(os.path.join(build_dir, 'xdisplaycheck'), env):
+ rc = xvfb_proc.poll()
+ if rc is None:
+ print 'Xvfb still running, stopping.'
+ xvfb_proc.terminate()
+ else:
+ print 'Xvfb exited, code %d' % rc
+
+ print 'Xvfb output:'
+ for l in xvfb_proc.communicate()[0].splitlines():
+ print '> %s' % l
+
return 3
# Inhibit recursion.
env['_CHROMIUM_INSIDE_XVFB'] = '1'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698