Index: scripts/slave/recipes/chromium_trybot.py |
diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py |
index 4b75e1caff15e77ee4fa56f6e9a7147c2dce801e..ebdf20d829ae05d0351b141d2c24b6fc8e66b8b2 100644 |
--- a/scripts/slave/recipes/chromium_trybot.py |
+++ b/scripts/slave/recipes/chromium_trybot.py |
@@ -1552,3 +1552,18 @@ def GenTests(api): |
'targets': ['browser_tests', 'base_unittests'], |
'build_targets': ['base_unittests']})) |
) |
+ |
+ # Test what happens if a telemetry test fails (we're testing that the |
+ # test names that need to be retried are in the 'foo.bar' format rather |
+ # than 'foo/bar'). |
+ yield ( |
+ api.test('telemetry_failures') + |
+ props(buildername='linux_chromium_rel') + |
+ api.platform.name('linux') + |
+ api.override_step_data('telemetry_unittests (with patch)', |
+ api.json.canned_test_output(passing=False, minimal=True, |
+ path_separator='.')) + |
+ api.override_step_data('telemetry_unittests (without patch)', |
+ api.json.canned_test_output(passing=False, minimal=True, |
+ path_separator='.')) |
+ ) |