diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-23 20:20:03 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-23 20:20:03 +0000 |
commit | 41cfb8babf493c291bd7268a1ce217b364b10a15 (patch) | |
tree | 89276bd8eeae61da592dff2aae1b04bef2522354 /build/android/run_tests.py | |
parent | 3631dc9467edfc228970e95d97f5a70f814d7e28 (diff) | |
download | chromium_src-41cfb8babf493c291bd7268a1ce217b364b10a15.zip chromium_src-41cfb8babf493c291bd7268a1ce217b364b10a15.tar.gz chromium_src-41cfb8babf493c291bd7268a1ce217b364b10a15.tar.bz2 |
Revert 178345
Causing sql_unittest to report failure on "Android Tests (dbg)"
http://build.chromium.org/p/chromium.linux/builders/Android%20Tests%20(dbg)
> [Android] Keep track of unknown test results at the TestRunner layer.
>
> If the entire gtest run crashes/failes/times out, the tests that
> were not run are marked as 'unknown'. These tests are reported
> by GetAllBroken() and are retried by BaseTestSharder.
>
> Get rid of overall_* flags which are now redundant.
>
> BUG=171466
>
> Review URL: https://codereview.chromium.org/11896050
TBR=frankf@chromium.org
Review URL: https://codereview.chromium.org/12049046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/run_tests.py')
-rwxr-xr-x | build/android/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/android/run_tests.py b/build/android/run_tests.py index 5c80bf3..14d54d1 100755 --- a/build/android/run_tests.py +++ b/build/android/run_tests.py @@ -196,6 +196,7 @@ class TestSharder(BaseTestSharder): test_type='Unit test', test_package=test_runners[0].test_package.test_suite_basename, build_type=self.build_type, + all_tests=self.all_tests, flakiness_server=self.flakiness_server) test_results.PrintAnnotation() @@ -264,7 +265,7 @@ def _RunATestSuite(options): for buildbot_emulator in buildbot_emulators: buildbot_emulator.Shutdown() - return len(test_results.GetAllBroken()) + return len(test_results.failed) def Dispatch(options): |