Title: [159372] trunk/LayoutTests
Revision
159372
Author
timothy_hor...@apple.com
Date
2013-11-15 17:10:19 -0800 (Fri, 15 Nov 2013)

Log Message

results.html should have a link to historical results for a test/all failing tests
https://bugs.webkit.org/show_bug.cgi?id=124402

Reviewed by Simon Fraser.

* fast/harness/results.html:
* fast/harness/resources/results-test.js:
Add the link to timeout/crash results too.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (159371 => 159372)


--- trunk/LayoutTests/ChangeLog	2013-11-16 00:55:33 UTC (rev 159371)
+++ trunk/LayoutTests/ChangeLog	2013-11-16 01:10:19 UTC (rev 159372)
@@ -1,5 +1,16 @@
 2013-11-15  Tim Horton  <timothy_hor...@apple.com>
 
+        results.html should have a link to historical results for a test/all failing tests
+        https://bugs.webkit.org/show_bug.cgi?id=124402
+
+        Reviewed by Simon Fraser.
+
+        * fast/harness/results.html:
+        * fast/harness/resources/results-test.js:
+        Add the link to timeout/crash results too.
+
+2013-11-15  Tim Horton  <timothy_hor...@apple.com>
+
         http/tests/security/frameNavigation/xss-DENIED-plugin-navigation.html is slow, frequently > 30 second timeout
         https://bugs.webkit.org/show_bug.cgi?id=124373
 

Modified: trunk/LayoutTests/fast/harness/resources/results-test.js (159371 => 159372)


--- trunk/LayoutTests/fast/harness/resources/results-test.js	2013-11-16 00:55:33 UTC (rev 159371)
+++ trunk/LayoutTests/fast/harness/resources/results-test.js	2013-11-16 01:10:19 UTC (rev 159372)
@@ -171,7 +171,7 @@
         
         assertTrue(!document.querySelector('#passes-table .expand-button'));
 
-        var expectationTypes = document.querySelectorAll('#passes-table td:last-of-type');
+        var expectationTypes = document.querySelectorAll('#passes-table td:nth-last-of-type(2)');
         assertTrue(expectationTypes[0].textContent == 'TEXT');
         assertTrue(expectationTypes[1].textContent == 'CRASH');
         assertTrue(expectationTypes[2].textContent == 'IMAGE');

Modified: trunk/LayoutTests/fast/harness/results.html (159371 => 159372)


--- trunk/LayoutTests/fast/harness/results.html	2013-11-16 00:55:33 UTC (rev 159371)
+++ trunk/LayoutTests/fast/harness/results.html	2013-11-16 01:10:19 UTC (rev 159372)
@@ -752,8 +752,10 @@
             // FIXME: only include timeout actual/diff results here if we actually spit out results for timeout tests.
             html += textResultLinks(stripExtension(test));
         }
-        
-        html += '</td></tr></tbody>';
+
+        html += '</td><td><a href="" + flakinessDashboardURLForTests([testObject]) + '">history</a></td>';
+
+        html += '</tr></tbody>';
     }
     html += '</table></div>';
     return html;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to