| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 | 2 |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS 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 # Script to run client or server tests on a live remote image. | 7 # Script to run client or server tests on a live remote image. |
| 8 | 8 |
| 9 # Load common constants. This should be the first executable line. | 9 # Load common constants. This should be the first executable line. |
| 10 # The path to common.sh should be relative to your script's location. | 10 # The path to common.sh should be relative to your script's location. |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 fi | 279 fi |
| 280 | 280 |
| 281 ${enter_chroot} ${autotest} --board "${FLAGS_board}" -m "${FLAGS_remote}" \ | 281 ${enter_chroot} ${autotest} --board "${FLAGS_board}" -m "${FLAGS_remote}" \ |
| 282 --ssh-port ${FLAGS_ssh_port} \ | 282 --ssh-port ${FLAGS_ssh_port} \ |
| 283 "${option}" "${control_file}" -r "${results_dir}" ${verbose} \ | 283 "${option}" "${control_file}" -r "${results_dir}" ${verbose} \ |
| 284 "${args[@]}" | 284 "${args[@]}" |
| 285 done | 285 done |
| 286 | 286 |
| 287 echo "" | 287 echo "" |
| 288 echo_color "yellow" ">>> Test results:" | 288 echo_color "yellow" ">>> Test results:" |
| 289 $(dirname "$0")/generate_test_report "${TMP}" --strip="${TMP}/" | 289 ./generate_test_report "${TMP}" --strip="${TMP}/" |
| 290 } | 290 } |
| 291 | 291 |
| 292 main $@ | 292 main $@ |
| OLD | NEW |