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

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

Issue 23106004: [Android] Removes run_* scripts, moves run_update_verificaiton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes all_android.gyp comment 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 | « build/android/run_browser_tests.py ('k') | build/android/run_tests.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 #!/usr/bin/env python
2 #
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 """Runs both the Python and Java instrumentation tests."""
8
9 import logging
10 import os
11 import sys
12
13 from pylib import cmd_helper
14
15
16 if __name__ == '__main__':
17 args = [os.path.join(os.path.dirname(__file__), 'test_runner.py'),
18 'instrumentation'] + sys.argv[1:]
19 logging.warning('*' * 80)
20 logging.warning('This script is deprecated and will be removed soon.')
21 logging.warning('Use the following instead: %s', ' '.join(args))
22 logging.warning('*' * 80)
23 sys.exit(1)
OLDNEW
« no previous file with comments | « build/android/run_browser_tests.py ('k') | build/android/run_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698