Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 import json | |
|
Sergiy Byelozyorov
2015/09/28 13:55:29
this is probably a debugging leftover, please remo
luqui
2015/09/28 17:33:34
Done.
| |
| 8 | 9 |
| 9 DEPS = [ | 10 DEPS = [ |
| 10 'amp', | 11 'amp', |
| 11 'bot_update', | 12 'bot_update', |
| 12 'chromium', | 13 'chromium', |
| 13 'chromium_android', | 14 'chromium_android', |
| 14 'chromium_tests', | 15 'chromium_tests', |
| 15 'commit_position', | 16 'commit_position', |
| 16 'file', | 17 'file', |
| 17 'gclient', | 18 'gclient', |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1359 api.platform.name('mac') + | 1360 api.platform.name('mac') + |
| 1360 api.override_step_data('pixel_test on Intel GPU on Mac (with patch)', | 1361 api.override_step_data('pixel_test on Intel GPU on Mac (with patch)', |
| 1361 api.raw_io.output_dir({'0/results.json': ''})) + | 1362 api.raw_io.output_dir({'0/results.json': ''})) + |
| 1362 api.override_step_data('analyze', | 1363 api.override_step_data('analyze', |
| 1363 api.json.output({'status': 'Found dependency', | 1364 api.json.output({'status': 'Found dependency', |
| 1364 'targets': gpu_targets, | 1365 'targets': gpu_targets, |
| 1365 'build_targets': gpu_targets})) | 1366 'build_targets': gpu_targets})) |
| 1366 ) | 1367 ) |
| 1367 | 1368 |
| 1368 yield ( | 1369 yield ( |
| 1370 api.test('telemetry_gpu_harness_failure') + | |
| 1371 props( | |
| 1372 mastername='tryserver.chromium.linux', | |
| 1373 buildername='linux_chromium_rel_ng', | |
| 1374 ) + | |
| 1375 api.platform.name('linux') + | |
| 1376 api.override_step_data( | |
| 1377 'maps_pixel_test on NVIDIA GPU on Linux (with patch) on Linux', | |
| 1378 api.test_utils.canned_telemetry_gpu_output( | |
| 1379 passing=False, is_win=False, swarming=True, | |
| 1380 empty_per_page_values=True), | |
| 1381 retcode=255) + | |
| 1382 api.override_step_data('analyze', | |
| 1383 api.json.output({'status': 'Found dependency', | |
| 1384 'targets': gpu_targets, | |
| 1385 'build_targets': gpu_targets})) | |
| 1386 ) | |
| 1387 | |
| 1388 yield ( | |
| 1369 api.test('telemetry_gpu_swarming_error') + | 1389 api.test('telemetry_gpu_swarming_error') + |
| 1370 props( | 1390 props( |
| 1371 mastername='tryserver.chromium.mac', | 1391 mastername='tryserver.chromium.mac', |
| 1372 buildername='mac_chromium_rel_ng', | 1392 buildername='mac_chromium_rel_ng', |
| 1373 ) + | 1393 ) + |
| 1374 api.platform.name('mac') + | 1394 api.platform.name('mac') + |
| 1375 api.override_step_data( | 1395 api.override_step_data( |
| 1376 'pixel_test on Intel GPU on Mac (with patch)', | 1396 'pixel_test on Intel GPU on Mac (with patch)', |
| 1377 api.raw_io.output_dir({ | 1397 api.raw_io.output_dir({ |
| 1378 '0/results.json': '', | 1398 '0/results.json': '', |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1585 api.test_utils.canned_test_output(passing=True)) | 1605 api.test_utils.canned_test_output(passing=True)) |
| 1586 ) | 1606 ) |
| 1587 | 1607 |
| 1588 yield ( | 1608 yield ( |
| 1589 api.test('use_v8_patch_on_blink_trybot') + | 1609 api.test('use_v8_patch_on_blink_trybot') + |
| 1590 props(mastername='tryserver.blink', | 1610 props(mastername='tryserver.blink', |
| 1591 buildername='mac_blink_rel', | 1611 buildername='mac_blink_rel', |
| 1592 patch_project='v8') + | 1612 patch_project='v8') + |
| 1593 api.platform.name('mac') | 1613 api.platform.name('mac') |
| 1594 ) | 1614 ) |
| OLD | NEW |