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

Unified Diff: tools/dartium/buildbot_annotated_steps.py

Issue 2054153002: Fixed Linux bots to disable GPU otherwise process is terminated (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed Comment Created 4 years, 6 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 | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/buildbot_annotated_steps.py
diff --git a/tools/dartium/buildbot_annotated_steps.py b/tools/dartium/buildbot_annotated_steps.py
index 61faf75575830b3011c45ed8b5728ae13a3524c1..c568b8e6223e9dd1a4695b64f907cd0212078e1c 100755
--- a/tools/dartium/buildbot_annotated_steps.py
+++ b/tools/dartium/buildbot_annotated_steps.py
@@ -34,7 +34,7 @@ def RunDartTests(mode, component, suite, arch, checked, test_filter=None,
"""
cmd = []
if sys.platform.startswith('linux'):
- cmd = ['xvfb-run', '-a']
+ cmd = ['xvfb-run', '--server-args=-screen 0 1024x768x24','-a']
cmd.append(sys.executable)
script = os.path.join(DART_PATH, 'tools', 'dartium', 'test.py')
cmd.append(script)
« no previous file with comments | « no previous file | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698