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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 674023002: Fix name/path separator for telemetry_unittests test names. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix --no-find-copies Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
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 DEPS = [ 5 DEPS = [
6 'bot_update', 6 'bot_update',
7 'chromium', 7 'chromium',
8 'chromium_tests', 8 'chromium_tests',
9 'gclient', 9 'gclient',
10 'isolate', 10 'isolate',
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 }, 1545 },
1546 ], 1546 ],
1547 }) 1547 })
1548 ) + 1548 ) +
1549 api.override_step_data( 1549 api.override_step_data(
1550 'analyze', 1550 'analyze',
1551 api.json.output({'status': 'Found dependency', 1551 api.json.output({'status': 'Found dependency',
1552 'targets': ['browser_tests', 'base_unittests'], 1552 'targets': ['browser_tests', 'base_unittests'],
1553 'build_targets': ['base_unittests']})) 1553 'build_targets': ['base_unittests']}))
1554 ) 1554 )
1555
1556 # Test what happens if a telemetry test fails (we're testing that the
1557 # test names that need to be retried are in the 'foo.bar' format rather
1558 # than 'foo/bar').
1559 yield (
1560 api.test('telemetry_failures') +
1561 props(buildername='linux_chromium_rel') +
1562 api.platform.name('linux') +
1563 api.override_step_data('telemetry_unittests (with patch)',
1564 api.json.canned_test_output(passing=False, minimal=True,
1565 path_separator='.')) +
1566 api.override_step_data('telemetry_unittests (without patch)',
1567 api.json.canned_test_output(passing=False, minimal=True,
1568 path_separator='.'))
1569 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/json/util.py ('k') | scripts/slave/recipes/chromium_trybot.expected/telemetry_failures.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698