diff options
author | mlerman <mlerman@chromium.org> | 2015-04-10 08:10:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-10 15:11:31 +0000 |
commit | 51c496cf20a4fbc63f7d84c47d40138df7645141 (patch) | |
tree | ec8aa9ca1101d823461c126eb74108be311d8928 | |
parent | b739185d7a5f82d10dfb33dcfadee507c17ad5f5 (diff) | |
download | chromium_src-51c496cf20a4fbc63f7d84c47d40138df7645141.zip chromium_src-51c496cf20a4fbc63f7d84c47d40138df7645141.tar.gz chromium_src-51c496cf20a4fbc63f7d84c47d40138df7645141.tar.bz2 |
Revert of Update the list of tests to run on iOS bots (patchset #1 id:1 of https://codereview.chromium.org/1077733002/)
Reason for revert:
I believe this CL is causing the IOS Simulator (DBG) bot to fail on gcm_unit_tests:
gcm_unit_tests (iPhone 5s iOS 8.1) gcm_unit_tests (iPhone 5s iOS 8.1) AppNotFoundError: App does not exist: /Volumes/data/b/build/slave/iOS_Simulator__dbg_/build/src/xcodebuild/Debug-iphonesimulator/gcm_unit_tests.app.
Example builder:
https://build.chromium.org/p/chromium.mac/builders/iOS_Simulator_%28dbg%29/builds/25320
Original issue's description:
> Update the list of tests to run on iOS bots
>
> Add all the unit tests for code that is compiled and used on iOS so
> that they are run on iOS bots (waterfall and CQ).
>
> BUG=475512
>
> Committed: https://crrev.com/e4c308a2736e5c80e35b5f9ebaf6f2d31dcd0523
> Cr-Commit-Position: refs/heads/master@{#324624}
TBR=smut@google.com,droger@chromium.org,sdefresne@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=475512
Review URL: https://codereview.chromium.org/1074163003
Cr-Commit-Position: refs/heads/master@{#324635}
-rw-r--r-- | ios/build/bots/tests/common_tests.json | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/ios/build/bots/tests/common_tests.json b/ios/build/bots/tests/common_tests.json index 05cfe4b..0b16509 100644 --- a/ios/build/bots/tests/common_tests.json +++ b/ios/build/bots/tests/common_tests.json @@ -1,52 +1,46 @@ { "tests": [ { - "app": "base_unittests" - }, - { - "app": "components_unittests" + "app": "ios_chrome_unittests" }, { - "app": "content_unittests" + "app": "ios_net_unittests" }, { - "app": "crypto_unittests" + "app": "ios_web_unittests" }, { - "app": "gcm_unit_tests" + "app": "base_unittests" }, { - "app": "gfx_unittests" + "app": "components_unittests" }, { - "app": "google_apis_unittests" + "app": "crypto_unittests" }, { - "app": "ios_chrome_unittests" + "app": "gfx_unittests" }, { - "app": "ios_net_unittests" + "app": "url_unittests" }, { - "app": "ios_web_unittests" + "app": "content_unittests" }, { "app": "net_unittests" }, { - "app": "skia_unittests" - }, - { - "app": "sql_unittests" + "app": "ui_base_unittests" }, { "app": "sync_unit_tests" }, { - "app": "ui_base_unittests" + "app": "sql_unittests" }, { - "app": "url_unittests" + "app": "skia_unittests" } ] } |