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

Unified Diff: scripts/slave/recipes/chromium.py

Issue 1675443002: Delete the GPU recipe and code that only it depended on. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Addressed iannucci's review feedback. Created 4 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/chromium.py
diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
index 5dd6f0bdaa72b66ed0e30462e8cf4a9d99a82855..093df784e9836bd1b783e8a98e6c2d94262a68ad 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -306,6 +306,32 @@ def GenTests(api):
)
yield (
+ api.test('dynamic_isolated_script_test_harness_failure_zero_retcode') +
+ api.properties.generic(mastername='chromium.linux',
+ buildername='Linux Tests',
+ parent_buildername='Linux Builder') +
+ api.properties(swarm_hashes={
+ 'telemetry_gpu_unittests': 'eeeeeeeeeeeeeeeeeeeeeeeeeeeeee',
+ }) +
+ api.platform('linux', 64) +
+ api.override_step_data('read test spec', api.json.output({
+ 'Linux Tests': {
+ 'isolated_scripts': [
+ {
+ 'isolate_name': 'telemetry_gpu_unittests',
+ 'name': 'telemetry_gpu_unittests',
+ },
+ ],
+ },
+ })) +
+ api.override_step_data('telemetry_gpu_unittests',
+ api.test_utils.canned_isolated_script_output(
+ passing=False, is_win=False, swarming=False,
+ isolated_script_passing=False, valid=False),
+ retcode=0)
+ )
+
+ yield (
api.test('build_dynamic_isolated_script_test_compile_target_overriden') +
api.properties.generic(mastername='chromium.linux',
buildername='Linux Builder') +

Powered by Google App Engine
This is Rietveld 408576698