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

Unified Diff: Tools/GardeningServer/ui/ct-test-list-tests.html

Issue 416673003: Show non-webkit test failures in the failure stream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/ui/ct-test-list.html ('k') | Tools/GardeningServer/ui/ct-unexpected-failures.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-test-list-tests.html
diff --git a/Tools/GardeningServer/ui/ct-test-list-tests.html b/Tools/GardeningServer/ui/ct-test-list-tests.html
index c709b2e8c6e9fd2c150e7d2d4c1ced37297a6ce4..f69a426bced6f3ae74f4eb9fc1121335a854c53d 100644
--- a/Tools/GardeningServer/ui/ct-test-list-tests.html
+++ b/Tools/GardeningServer/ui/ct-test-list-tests.html
@@ -10,9 +10,39 @@ found in the LICENSE file.
(function () {
var kExampleTests = [
- "plugins/gesture-events-scrolled.html",
- "plugins/transformed-events.html",
- "plugins/gesture-events.html",
+{
+ "testName": "plugins/gesture-events-scrolled.html",
+ "step": "foo_step",
+ "resultNodesByBuilder": {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ },
+ "oldestFailingRevision": 177164,
+ "newestPassingRevision": 177165,
+},
+{
+ "testName": "plugins/transformed-events.html",
+ "step": "foo_step",
+ "resultNodesByBuilder": {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ },
+ "oldestFailingRevision": 177164,
+ "newestPassingRevision": 177165,
+},
+{
+ "testName": "plugins/gesture-events.html",
+ "step": "foo_step",
+ "resultNodesByBuilder": {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ },
+ "oldestFailingRevision": 177164,
+ "newestPassingRevision": 177165,
+},
];
module("ct-test-list");
@@ -25,9 +55,9 @@ asyncTest("basic", 4, function() {
Platform.endOfMicrotask(function() {
var tests = list.shadowRoot.querySelectorAll('a');
equal(tests.length, 3);
- equal(tests[0].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Fgesture-events-scrolled.html');
- equal(tests[1].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Ftransformed-events.html');
- equal(tests[2].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Fgesture-events.html');
+ equal(tests[0].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Fgesture-events-scrolled.html&testType=foo_step');
+ equal(tests[1].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Ftransformed-events.html&testType=foo_step');
+ equal(tests[2].href, 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=plugins%2Fgesture-events.html&testType=foo_step');
start();
});
« no previous file with comments | « Tools/GardeningServer/ui/ct-test-list.html ('k') | Tools/GardeningServer/ui/ct-unexpected-failures.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698