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..53d177157462f7e031e40e6db4d092a302b41952 100644 |
--- a/slave/skia_slave_scripts/run_dm.py |
+++ b/slave/skia_slave_scripts/run_dm.py |
@@ -11,7 +11,10 @@ import sys |
class RunDM(BuildStep): |
def _Run(self): |
- args = ['-v'] |
+ args = [ |
+ '--verbose', |
+ '--resourcePath', self._device_dirs.ResourceDir(), |
+ ] |
if 'Housekeeper' in self._builder_name: |
args.append('--nogpu') |
borenet
2014/07/14 19:53:47
What happens if we compiled without GPU?
mtklein
2014/07/14 20:39:47
The GPU-based tests doubly don't run.
|