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

Issue 1216001: Look for ERROR too. Not sure if BAD actually ever shows up. (Closed)

Created:
10 years, 9 months ago by petkov
Modified:
9 years, 7 months ago
Reviewers:
kmixter1
CC:
chromium-os-reviews_chromium.org
Visibility:
Public.

Description

Look for ERROR too. Not sure if BAD actually ever shows up.

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2 lines, -2 lines) Patch
M src/scripts/run_remote_tests.sh View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
petkov
10 years, 9 months ago (2010-03-23 21:31:03 UTC) #1
kmixter1
10 years, 9 months ago (2010-03-23 21:41:07 UTC) #2
LGTM

On Tue, Mar 23, 2010 at 2:31 PM,  <petkov@chromium.org> wrote:
> Reviewers: kmixter1,
>
> Description:
> Look for ERROR too. Not sure if BAD actually ever shows up.
>
> Please review this at http://codereview.chromium.org/1216001
>
> Affected files:
>  M src/scripts/run_remote_tests.sh
>
>
> Index: src/scripts/run_remote_tests.sh
> diff --git a/src/scripts/run_remote_tests.sh
> b/src/scripts/run_remote_tests.sh
> index
>
17cc32d1055d34eaac314935ec1aaf5c91a6e69f..b8e1992db55ecbcd456fba50e8c39a7e6731303c
> 100755
> --- a/src/scripts/run_remote_tests.sh
> +++ b/src/scripts/run_remote_tests.sh
> @@ -64,8 +64,8 @@ function cleanup() {
>  #   None
>  function is_successful_test() {
>   local file="$1"
> -  # To be successful, must not have FAIL or BAD in the file.
> -  if egrep -q "(BAD|FAIL)" "${file}"; then
> +  # To be successful, must not have BAD, ERROR or FAIL in the file.
> +  if egrep -q "(BAD|ERROR|FAIL)" "${file}"; then
>     return 1
>   fi
>   # To be successful, must have GOOD in the file.
>
>
>

Powered by Google App Engine
This is Rietveld 408576698