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

Side by Side Diff: build/android/buildbot_functions.sh

Issue 9223034: Fix comment about non-emulator android tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/buildbot_fyi.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 # Bash functions used by buildbot annotator scripts for the android 6 # Bash functions used by buildbot annotator scripts for the android
7 # build of chromium. Executing this script should not perform actions 7 # build of chromium. Executing this script should not perform actions
8 # other than setting variables and defining of functions. 8 # other than setting variables and defining of functions.
9 9
10 # Number of jobs on the compile line; e.g. make -j"${JOBS}" 10 # Number of jobs on the compile line; e.g. make -j"${JOBS}"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 93 }
94 94
95 # Run tests on an emulator. 95 # Run tests on an emulator.
96 function bb_run_tests_emulator { 96 function bb_run_tests_emulator {
97 echo "@@@BUILD_STEP Run Tests on an Emulator@@@" 97 echo "@@@BUILD_STEP Run Tests on an Emulator@@@"
98 build/android/run_tests.py -e --xvfb --verbose 98 build/android/run_tests.py -e --xvfb --verbose
99 } 99 }
100 100
101 # Run tests on an actual device. (Better have one plugged in!) 101 # Run tests on an actual device. (Better have one plugged in!)
102 function bb_run_tests { 102 function bb_run_tests {
103 echo "@@@BUILD_STEP Run Tests on an Emulator@@@" 103 echo "@@@BUILD_STEP Run Tests on actual hardware@@@"
104 build/android/run_tests.py --xvfb --verbose 104 build/android/run_tests.py --xvfb --verbose
105 } 105 }
OLDNEW
« no previous file with comments | « no previous file | build/android/buildbot_fyi.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698