| 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')
|
| - )
|
| -
|
|
|