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

Side by Side Diff: mojo/devtools/common/devtoolslib/apptest.py

Issue 1128153002: Rename the devtools library: pylib -> devtoolslib. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Address offline comments/ devtools_lib -> devtoolslib. Created 5 years, 7 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 """Apptest is a Mojo application that interacts with another Mojo application 5 """Apptest is a Mojo application that interacts with another Mojo application
6 and verifies assumptions about behavior of the app being tested. 6 and verifies assumptions about behavior of the app being tested.
7 """ 7 """
8 8
9 import logging 9 import logging
10 import time 10 import time
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 print 'Failed test: %r' % command_line 64 print 'Failed test: %r' % command_line
65 if exit_code: 65 if exit_code:
66 print ' due to shell exit code %d' % exit_code 66 print ' due to shell exit code %d' % exit_code
67 else: 67 else:
68 print ' due to test results' 68 print ' due to test results'
69 print 72 * '-' 69 print 72 * '-'
70 print output 70 print output
71 print 72 * '-' 71 print 72 * '-'
72 return False 72 return False
73 return True 73 return True
OLDNEW
« no previous file with comments | « mojo/devtools/common/devtoolslib/android_shell.py ('k') | mojo/devtools/common/devtoolslib/apptest_dart.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698