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

Unified Diff: trunk/src/testing/xvfb.py

Issue 60343005: Revert 233071 "Migrate to Openbox from IceWM (In chrome scripts)" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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: trunk/src/testing/xvfb.py
===================================================================
--- trunk/src/testing/xvfb.py (revision 233115)
+++ trunk/src/testing/xvfb.py (working copy)
@@ -82,7 +82,7 @@
"""Runs an executable within a xvfb buffer on linux or normally on other
platforms.
- Requires that both xvfb and openbox are installed on linux.
+ Requires that both xvfb and icewm are installed on linux.
Detects recursion with an environment variable and do not create a recursive X
buffer if present.
@@ -109,11 +109,11 @@
# Some ChromeOS tests need a window manager. Technically, it could be
# another script but that would be overkill.
try:
- wm_cmd = ['openbox']
+ ice_cmd = ['icewm']
subprocess.Popen(
- wm_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env)
+ ice_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env)
except OSError:
- print >> sys.stderr, 'Failed to run %s' % ' '.join(wm_cmd)
+ print >> sys.stderr, 'Failed to run %s' % ' '.join(ice_cmd)
return 1
return test_env.run_executable(cmd, env)
finally:
« 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