Title: [92357] trunk/Tools
Revision
92357
Author
[email protected]
Date
2011-08-04 00:41:57 -0700 (Thu, 04 Aug 2011)

Log Message

Fix types.  Sadly, main.js has no test coverage.  (I need to think
about how to test this part of the code.)

* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js (92356 => 92357)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js	2011-08-04 07:14:58 UTC (rev 92356)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js	2011-08-04 07:41:57 UTC (rev 92357)
@@ -222,7 +222,8 @@
 
 function showSelectedFailures()
 {
-    g_resultsDetailsIterator = new base.CallbackIterator(showResultsDetail, selectedFailures());
+    var listOfArgumentArrays = selectedFailures().map(function(failureInfo) { return [failureInfo]; });
+    g_resultsDetailsIterator = new base.CallbackIterator(showResultsDetail, listOfArgumentArrays);
     g_resultsDetailsIterator.callNext();
 }
 

Modified: trunk/Tools/ChangeLog (92356 => 92357)


--- trunk/Tools/ChangeLog	2011-08-04 07:14:58 UTC (rev 92356)
+++ trunk/Tools/ChangeLog	2011-08-04 07:41:57 UTC (rev 92357)
@@ -1,5 +1,12 @@
 2011-08-04  Adam Barth  <[email protected]>
 
+        Fix types.  Sadly, main.js has no test coverage.  (I need to think
+        about how to test this part of the code.)
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
+
+2011-08-04  Adam Barth  <[email protected]>
+
         bugzilla.js is missing unit tests
         https://bugs.webkit.org/show_bug.cgi?id=65656
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to