OLD | NEW |
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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 function bb_print_logcat { | 201 function bb_print_logcat { |
202 echo "@@@BUILD_STEP Logcat dump@@@" | 202 echo "@@@BUILD_STEP Logcat dump@@@" |
203 python build/android/adb_logcat_printer.py "$LOGCAT_DUMP_DIR" | 203 python build/android/adb_logcat_printer.py "$LOGCAT_DUMP_DIR" |
204 } | 204 } |
205 | 205 |
206 # Run tests on an actual device. (Better have one plugged in!) | 206 # Run tests on an actual device. (Better have one plugged in!) |
207 function bb_run_unit_tests { | 207 function bb_run_unit_tests { |
208 build/android/run_tests.py --xvfb --verbose | 208 build/android/run_tests.py --xvfb --verbose |
209 } | 209 } |
210 | 210 |
| 211 # Run WebKit's test suites: webkit_unit_tests and TestWebKitAPI |
| 212 function bb_run_webkit_unit_tests { |
| 213 build/android/run_tests.py --xvfb --verbose -s webkit_unit_tests |
| 214 build/android/run_tests.py --xvfb --verbose -s TestWebKitAPI |
| 215 } |
| 216 |
| 217 # Lint WebKit's TestExpectation files. |
| 218 function bb_lint_webkit_expectation_files { |
| 219 echo "@@@BUILD_STEP webkit_lint@@@" |
| 220 bb_run_step python webkit/tools/layout_tests/run_webkit_tests.py \ |
| 221 --lint-test-files \ |
| 222 --chromium |
| 223 } |
| 224 |
| 225 # Run layout tests on an actual device. |
| 226 function bb_run_webkit_layout_tests { |
| 227 echo "@@@BUILD_STEP webkit_tests@@@" |
| 228 local BUILDERNAME="$(bb_get_json_prop "$BUILD_PROPERTIES" buildername)" |
| 229 local BUILDNUMBER="$(bb_get_json_prop "$BUILD_PROPERTIES" buildnumber)" |
| 230 local MASTERNAME="$(bb_get_json_prop "$BUILD_PROPERTIES" mastername)" |
| 231 local RESULTSERVER=\ |
| 232 "$(bb_get_json_prop "$FACTORY_PROPERTIES" test_results_server)" |
| 233 |
| 234 bb_run_step python webkit/tools/layout_tests/run_webkit_tests.py \ |
| 235 --no-show-results \ |
| 236 --no-new-test-results \ |
| 237 --full-results-html \ |
| 238 --clobber-old-results \ |
| 239 --exit-after-n-failures 5000 \ |
| 240 --exit-after-n-crashes-or-timeouts 100 \ |
| 241 --debug-rwt-logging \ |
| 242 --results-directory "../layout-test-results" \ |
| 243 --target "$BUILDTYPE" \ |
| 244 --builder-name "$BUILDERNAME" \ |
| 245 --build-number "$BUILDNUMBER" \ |
| 246 --master-name "$MASTERNAME" \ |
| 247 --build-name "$BUILDERNAME" \ |
| 248 --platform=chromium-android \ |
| 249 --test-results-server "$RESULTSERVER" |
| 250 } |
| 251 |
211 # Run experimental unittest bundles. | 252 # Run experimental unittest bundles. |
212 function bb_run_experimental_unit_tests { | 253 function bb_run_experimental_unit_tests { |
213 # This build step was added because bash does not allow empty functions. | 254 # This build step was added because bash does not allow empty functions. |
214 # run_tests.py echoes a build step, comment/remove this build step when you | 255 # run_tests.py echoes a build step, comment/remove this build step when you |
215 # add tests to the experimental step. | 256 # add tests to the experimental step. |
216 echo '@@@BUILD_STEP experimental_unit_tests@@@' | 257 echo '@@@BUILD_STEP experimental_unit_tests@@@' |
217 | |
218 } | 258 } |
219 | 259 |
220 # Run findbugs. | 260 # Run findbugs. |
221 function bb_run_findbugs_diff { | 261 function bb_run_findbugs_diff { |
222 echo "@@@BUILD_STEP findbugs_diff@@@" | 262 echo "@@@BUILD_STEP findbugs_diff@@@" |
223 build/android/findbugs_diff.py | 263 build/android/findbugs_diff.py |
224 } | 264 } |
225 | 265 |
226 # Run findbugs plugin tests. | 266 # Run findbugs plugin tests. |
227 function bb_run_findbugs_plugin_tests { | 267 function bb_run_findbugs_plugin_tests { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 ) | 376 ) |
337 } | 377 } |
338 | 378 |
339 # Retrieve a packed json property using python | 379 # Retrieve a packed json property using python |
340 function bb_get_json_prop { | 380 function bb_get_json_prop { |
341 local JSON="$1" | 381 local JSON="$1" |
342 local PROP="$2" | 382 local PROP="$2" |
343 | 383 |
344 python -c "import json; print json.loads('$JSON').get('$PROP', '')" | 384 python -c "import json; print json.loads('$JSON').get('$PROP', '')" |
345 } | 385 } |
OLD | NEW |