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

Unified Diff: slave/skia_slave_scripts/run_dm.py

Issue 395443002: Run DM on all bots. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: cleanup slave 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
Index: slave/skia_slave_scripts/run_dm.py
diff --git a/slave/skia_slave_scripts/run_dm.py b/slave/skia_slave_scripts/run_dm.py
index 6cbb568805268ab8a280cb7b9857e96fbf7e8b48..1210cd27ea243d78c81dab736c6f15586ddc2698 100644
--- a/slave/skia_slave_scripts/run_dm.py
+++ b/slave/skia_slave_scripts/run_dm.py
@@ -11,12 +11,11 @@ import sys
class RunDM(BuildStep):
def _Run(self):
- args = ['-v']
- if 'Housekeeper' in self._builder_name:
- args.append('--nogpu')
-
+ args = [
+ '--verbose',
+ '--resourcePath', self._device_dirs.ResourceDir(),
+ ]
self._flavor_utils.RunFlavoredCmd('dm', args)
-
if '__main__' == __name__:
sys.exit(BuildStep.RunBuildStep(RunDM))

Powered by Google App Engine
This is Rietveld 408576698