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

Unified Diff: scripts/slave/recipes/gpu/download_and_test.py

Issue 919113002: Removed tryserver.chromium.gpu and related references (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/gpu/download_and_test.py
diff --git a/scripts/slave/recipes/gpu/download_and_test.py b/scripts/slave/recipes/gpu/download_and_test.py
index 9de3a9937daf5eba512923e1666cb6ef024c1cb0..9388a9d99fc640579d366a5f4d7e81d0ad58c91f 100644
--- a/scripts/slave/recipes/gpu/download_and_test.py
+++ b/scripts/slave/recipes/gpu/download_and_test.py
@@ -81,48 +81,3 @@ def GenTests(api):
api.step_data('content_gl_tests', retcode=1) +
api.step_data('maps_pixel_test', retcode=1)
)
-
- # Tests that we only run the gpu_unittests isolate if that's all
- # that analyze said to rebuild.
- angle_unittests_hash = {x: all_hashes[x] for x in ['gpu_unittests']}
- yield (
- api.test('analyze_runs_only_gpu_unittests') +
- api.properties.tryserver(
- mastername='tryserver.chromium.gpu',
- buildername='win_gpu',
- parent_got_revision=160000,
- parent_got_webkit_revision=10000,
- parent_got_swarming_client_revision='feaaabcdef',
- swarm_hashes=angle_unittests_hash
- ) +
- api.platform.name('win')
- )
-
- # Tests that we run nothing if analyze said we didn't have to run anything.
- yield (
- api.test('analyze_runs_nothing') +
- api.properties.tryserver(
- mastername='tryserver.chromium.gpu',
- buildername='win_gpu',
- parent_got_revision=160000,
- parent_got_webkit_revision=10000,
- parent_got_swarming_client_revision='feaaabcdef',
- swarm_hashes={}
- ) +
- api.platform.name('win')
- )
-
- # Tests that swarm_hashes='' doesn't throw an exception.
- yield (
- api.test('analyze_does_not_throw_exception') +
- api.properties.tryserver(
- mastername='tryserver.chromium.gpu',
- buildername='win_gpu',
- parent_got_revision=160000,
- parent_got_webkit_revision=10000,
- parent_got_swarming_client_revision='feaaabcdef',
- swarm_hashes=''
- ) +
- api.platform.name('win')
- )
-

Powered by Google App Engine
This is Rietveld 408576698