diff options
author | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 08:48:52 +0000 |
---|---|---|
committer | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 08:48:52 +0000 |
commit | ce1d47dcbf486cd0bdda1c9ab386260cdc874334 (patch) | |
tree | 3ac34bdab88fabfcf2e70def5b38d60e237a07f9 /build | |
parent | de09a7955b2fb58e9c9c0654570e935c722a1fc1 (diff) | |
download | chromium_src-ce1d47dcbf486cd0bdda1c9ab386260cdc874334.zip chromium_src-ce1d47dcbf486cd0bdda1c9ab386260cdc874334.tar.gz chromium_src-ce1d47dcbf486cd0bdda1c9ab386260cdc874334.tar.bz2 |
Fix STEP_WARNINGS for android buildbot
- bb_goma_make does not return the exit status of make
due to the goma shutdown step.
For bb_compile_experimental, bash exit on error is disabled
and we are relying on bb_goma_make exit status to determine
failure.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10536165
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142111 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/buildbot_functions.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/android/buildbot_functions.sh b/build/android/buildbot_functions.sh index 4c26610..706d5f4 100755 --- a/build/android/buildbot_functions.sh +++ b/build/android/buildbot_functions.sh @@ -180,7 +180,9 @@ function bb_goma_make { COMMON_JAVAC="$COMMON_JAVAC" \ "$@" + local make_exit_status=$? bb_stop_goma_internal + return $make_exit_status } # Compile step |