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

Side by Side Diff: build/android/pylib/valgrind_tools.py

Issue 358993003: [Android] Switch to DeviceUtils versions of file functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « build/android/pylib/utils/reraiser_thread.py ('k') | build/android/tombstones.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """ 5 """
6 Classes in this file define additional actions that need to be taken to run a 6 Classes in this file define additional actions that need to be taken to run a
7 test under some kind of runtime error detection tool. 7 test under some kind of runtime error detection tool.
8 8
9 The interface is intended to be used as follows. 9 The interface is intended to be used as follows.
10 10
(...skipping 21 matching lines...) Expand all
32 from pylib.device import device_errors 32 from pylib.device import device_errors
33 33
34 34
35 def SetChromeTimeoutScale(device, scale): 35 def SetChromeTimeoutScale(device, scale):
36 """Sets the timeout scale in /data/local/tmp/chrome_timeout_scale to scale.""" 36 """Sets the timeout scale in /data/local/tmp/chrome_timeout_scale to scale."""
37 path = '/data/local/tmp/chrome_timeout_scale' 37 path = '/data/local/tmp/chrome_timeout_scale'
38 if not scale or scale == 1.0: 38 if not scale or scale == 1.0:
39 # Delete if scale is None/0.0/1.0 since the default timeout scale is 1.0 39 # Delete if scale is None/0.0/1.0 since the default timeout scale is 1.0
40 device.RunShellCommand('rm %s' % path) 40 device.RunShellCommand('rm %s' % path)
41 else: 41 else:
42 device.old_interface.SetProtectedFileContents(path, '%f' % scale) 42 device.WriteFile(path, '%f' % scale, as_root=True)
43 43
44 44
45 class BaseTool(object): 45 class BaseTool(object):
46 """A tool that does nothing.""" 46 """A tool that does nothing."""
47 47
48 def __init__(self): 48 def __init__(self):
49 """Does nothing.""" 49 """Does nothing."""
50 pass 50 pass
51 51
52 def GetTestWrapper(self): 52 def GetTestWrapper(self):
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 166
167 def CopyFiles(self): 167 def CopyFiles(self):
168 """Copies Valgrind tools to the device.""" 168 """Copies Valgrind tools to the device."""
169 self._device.RunShellCommand( 169 self._device.RunShellCommand(
170 'rm -r %s; mkdir %s' % (ValgrindTool.VG_DIR, ValgrindTool.VG_DIR)) 170 'rm -r %s; mkdir %s' % (ValgrindTool.VG_DIR, ValgrindTool.VG_DIR))
171 self._device.RunShellCommand( 171 self._device.RunShellCommand(
172 'rm -r %s; mkdir %s' % (ValgrindTool.VGLOGS_DIR, 172 'rm -r %s; mkdir %s' % (ValgrindTool.VGLOGS_DIR,
173 ValgrindTool.VGLOGS_DIR)) 173 ValgrindTool.VGLOGS_DIR))
174 files = self.GetFilesForTool() 174 files = self.GetFilesForTool()
175 for f in files: 175 for f in files:
176 self._device.old_interface.PushIfNeeded( 176 self._device.PushChangedFiles(
177 os.path.join(DIR_SOURCE_ROOT, f), 177 os.path.join(DIR_SOURCE_ROOT, f),
178 os.path.join(ValgrindTool.VG_DIR, os.path.basename(f))) 178 os.path.join(ValgrindTool.VG_DIR, os.path.basename(f)))
179 179
180 def SetupEnvironment(self): 180 def SetupEnvironment(self):
181 """Sets up device environment.""" 181 """Sets up device environment."""
182 self._device.RunShellCommand('chmod 777 /data/local/tmp') 182 self._device.RunShellCommand('chmod 777 /data/local/tmp')
183 self._device.RunShellCommand('setenforce 0') 183 self._device.RunShellCommand('setenforce 0')
184 for prop in self._wrap_properties: 184 for prop in self._wrap_properties:
185 self._device.RunShellCommand( 185 self._device.RunShellCommand(
186 'setprop %s "logwrapper %s"' % (prop, self.GetTestWrapper())) 186 'setprop %s "logwrapper %s"' % (prop, self.GetTestWrapper()))
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 if not tool_name: 269 if not tool_name:
270 return BaseTool() 270 return BaseTool()
271 271
272 ctor = TOOL_REGISTRY.get(tool_name) 272 ctor = TOOL_REGISTRY.get(tool_name)
273 if ctor: 273 if ctor:
274 return ctor(device) 274 return ctor(device)
275 else: 275 else:
276 print 'Unknown tool %s, available tools: %s' % ( 276 print 'Unknown tool %s, available tools: %s' % (
277 tool_name, ', '.join(sorted(TOOL_REGISTRY.keys()))) 277 tool_name, ', '.join(sorted(TOOL_REGISTRY.keys())))
278 sys.exit(1) 278 sys.exit(1)
OLDNEW
« no previous file with comments | « build/android/pylib/utils/reraiser_thread.py ('k') | build/android/tombstones.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698