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

Side by Side Diff: tools/skpbench/_adb.py

Issue 2350003002: Add adb support to skpbench (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | tools/skpbench/_adb_path.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import subprocess
7
8 def shell(cmd, device_serial=None):
9 if device_serial is None:
10 subprocess.call(['adb', 'shell', cmd])
11 else:
12 subprocess.call(['adb', '-s', device_serial, 'shell', cmd])
13
14 def check(cmd, device_serial=None):
15 if device_serial is None:
16 out = subprocess.check_output(['adb', 'shell', cmd])
17 else:
18 out = subprocess.check_output(['adb', '-s', device_serial, 'shell', cmd])
19 return out.rstrip()
OLDNEW
« no previous file with comments | « no previous file | tools/skpbench/_adb_path.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698