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

Side by Side Diff: build/android/update_verification.py

Issue 22891004: Moves update_verification.py back to build/android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 | update_verification.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 # 2 #
3 # Copyright 2013 The Chromium Authors. All rights reserved. 3 # Copyright 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """Runs semi-automated update testing on a non-rooted device.""" 7 """Runs semi-automated update testing on a non-rooted device."""
8 import logging 8 import logging
9 import optparse 9 import optparse
10 import os 10 import os
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 parser.print_help(sys.stderr) 126 parser.print_help(sys.stderr)
127 parser.error('Missing --to-apk or --app-data.') 127 parser.error('Missing --to-apk or --app-data.')
128 assert os.path.isfile(options.to_apk) 128 assert os.path.isfile(options.to_apk)
129 assert os.path.isfile(options.app_data) 129 assert os.path.isfile(options.app_data)
130 _VerifyAppUpdate(adb, options.to_apk, options.app_data, 130 _VerifyAppUpdate(adb, options.to_apk, options.app_data,
131 from_apk=options.from_apk) 131 from_apk=options.from_apk)
132 132
133 133
134 if __name__ == '__main__': 134 if __name__ == '__main__':
135 main() 135 main()
OLDNEW
« no previous file with comments | « no previous file | update_verification.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698