[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 14:52:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 76b132eeacfb861de6699eb773876aa20b2de88a
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 22 20:52:58 2010 +0000

    2010-10-22  Eric Seidel  <eric at webkit.org>
    
            Unreviewed.  Just adding a test case.
    
            The style-queue was not recognizing new patches.  It turns
            out I had fixed this in an earlier change, but just not
            deployed to queues.webkit.org.  As part of investigating why it
            was broken, I wrote a test for my previous change which I'm now landing.
    
            * QueueStatusServer/model/queues_unittest.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70331 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index d3ef50f..372aed1 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,16 @@
 2010-10-22  Eric Seidel  <eric at webkit.org>
 
+        Unreviewed.  Just adding a test case.
+
+        The style-queue was not recognizing new patches.  It turns
+        out I had fixed this in an earlier change, but just not
+        deployed to queues.webkit.org.  As part of investigating why it
+        was broken, I wrote a test for my previous change which I'm now landing.
+
+        * QueueStatusServer/model/queues_unittest.py:
+
+2010-10-22  Eric Seidel  <eric at webkit.org>
+
         Reviewed by Adam Barth.
 
         EWS does not need to process obsolete patches
diff --git a/WebKitTools/QueueStatusServer/model/queues_unittest.py b/WebKitTools/QueueStatusServer/model/queues_unittest.py
index 33070a8..cfa7fcd 100644
--- a/WebKitTools/QueueStatusServer/model/queues_unittest.py
+++ b/WebKitTools/QueueStatusServer/model/queues_unittest.py
@@ -68,6 +68,13 @@ class QueueTest(unittest.TestCase):
         self._assert_name_with_underscores("chromium-ews", "chromium_ews")
         self._assert_name_with_underscores("commit-queue", "commit_queue")
 
+    def test_style_queue_is_ews(self):
+        # For now we treat the style-queue as an EWS since most users would
+        # describe it as such.  If is_ews() ever needs to mean "builds the patch"
+        # or similar, then we will need to adjust all callers.
+        self.assertTrue(Queue("style-queue").is_ews())
+        self.assertTrue("style-queue" in map(Queue.name, Queue.all_ews()))
+
 
 if __name__ == '__main__':
     unittest.main()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list