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

Side by Side Diff: mojo/public/tools/mopy/background_app_group.py

Issue 878933003: Move the apptest runner and parts of mopy to the public SDK. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 | « mojo/public/tools/mopy/android.py ('k') | mojo/public/tools/mopy/config.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import logging 6 import logging
7 import os 7 import os
8 import subprocess 8 import subprocess
9 import time 9 import time
10 import sys 10 import sys
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 app.wait() 148 app.wait()
149 if app.returncode != -SIGTERM: 149 if app.returncode != -SIGTERM:
150 copyfileobj(output_file, sys.stdout) 150 copyfileobj(output_file, sys.stdout)
151 self._apps = [] 151 self._apps = []
152 152
153 153
154 @property 154 @property
155 def socket_path(self): 155 def socket_path(self):
156 """The path of the socket where the shell is listening for external apps.""" 156 """The path of the socket where the shell is listening for external apps."""
157 return self._shell._socket_path 157 return self._shell._socket_path
OLDNEW
« no previous file with comments | « mojo/public/tools/mopy/android.py ('k') | mojo/public/tools/mopy/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698