Title: [90852] trunk/Tools
Revision
90852
Author
[email protected]
Date
2011-07-12 14:38:21 -0700 (Tue, 12 Jul 2011)

Log Message

fix flakiness dashboard to work with new crash log filenames
https://bugs.webkit.org/show_bug.cgi?id=64393

Reviewed by Adam Barth.

* TestResultServer/static-dashboards/flakiness_dashboard.html:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90851 => 90852)


--- trunk/Tools/ChangeLog	2011-07-12 21:38:05 UTC (rev 90851)
+++ trunk/Tools/ChangeLog	2011-07-12 21:38:21 UTC (rev 90852)
@@ -1,3 +1,12 @@
+2011-07-12  Ojan Vafai  <[email protected]>
+
+        fix flakiness dashboard to work with new crash log filenames
+        https://bugs.webkit.org/show_bug.cgi?id=64393
+
+        Reviewed by Adam Barth.
+
+        * TestResultServer/static-dashboards/flakiness_dashboard.html:
+
 2011-07-12  Adam Barth  <[email protected]>
 
         Add a happy animation to garden-o-matic when there are no failures

Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html (90851 => 90852)


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-12 21:38:05 UTC (rev 90851)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-12 21:38:21 UTC (rev 90852)
@@ -2264,7 +2264,7 @@
     var innerHTML;
     if (builder) {
       var resultsType;
-      if (endsWith(path, '-stack.txt')) {
+      if (endsWith(path, '-crash-log.txt')) {
         resultsType = 'STACKTRACE';
       } else if (endsWith(path, '-actual.txt') ||
                  endsWith(path, '-actual.png')) {
@@ -2399,7 +2399,7 @@
                       reftest_html_file, reftest_mismatch_html_file);
     }
 
-    var actualResultSuffixes = ['-actual.txt', '-actual.png', '-stack.txt',
+    var actualResultSuffixes = ['-actual.txt', '-actual.png', '-crash-log.txt',
         '-diff.txt', '-wdiff.html', '-diff.png'];
 
     for (var builder in builders) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to