summaryrefslogtreecommitdiffstats
path: root/testing/xvfb.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/xvfb.py')
-rwxr-xr-xtesting/xvfb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/xvfb.py b/testing/xvfb.py
index 7a42d47..e8feaac 100755
--- a/testing/xvfb.py
+++ b/testing/xvfb.py
@@ -109,9 +109,9 @@ def run_executable(cmd, build_dir, env):
# Some ChromeOS tests need a window manager. Technically, it could be
# another script but that would be overkill.
try:
- cmd = ['icewm']
+ ice_cmd = ['icewm']
subprocess.Popen(
- 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(cmd)
return 1