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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 11:13:54 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c2d302ef065e373a8db8f7ae4c9d9972c8c63950
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 15 16:48:39 2010 +0000

    2010-07-15  Adam Barth  <abarth at webkit.org>
    
            Unreviewed.
    
            Update the port names to be more specific.  Before this patch,
            port-specific results for Mac would end up in the wrong place.
    
            * Scripts/webkitpy/tool/commands/rebaseline.py:
            * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63431 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index ca7f237..3e77e4f 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,13 @@
+2010-07-15  Adam Barth  <abarth at webkit.org>
+
+        Unreviewed.
+
+        Update the port names to be more specific.  Before this patch,
+        port-specific results for Mac would end up in the wrong place.
+
+        * Scripts/webkitpy/tool/commands/rebaseline.py:
+        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
+
 2010-07-14  Eric Seidel  <eric at webkit.org>
 
         Reviewed by Adam Barth.
diff --git a/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline.py b/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline.py
index c57a735..78e06c6 100644
--- a/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline.py
+++ b/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline.py
@@ -42,9 +42,9 @@ from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
 # For now it's here, until we have a second need for it.
 class BuilderToPort(object):
     _builder_name_to_port_name = {
-        r"SnowLeopard": "mac",
-        r"Leopard": "mac",
-        r"Tiger": "mac",
+        r"SnowLeopard": "mac-snowleopard",
+        r"Leopard": "mac-leopard",
+        r"Tiger": "mac-tiger",
         r"Windows": "win",
         r"GTK": "gtk",
         r"Qt": "qt",
diff --git a/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py b/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
index 2e9d9c7..d6582a7 100644
--- a/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
+++ b/WebKitTools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
@@ -35,4 +35,4 @@ class BuilderToPortTest(unittest.TestCase):
     def test_port_for_builder(self):
         converter = BuilderToPort()
         port = converter.port_for_builder("Leopard Intel Debug (Tests)")
-        self.assertEqual(port.name(), "mac")
+        self.assertEqual(port.name(), "mac-leopard")

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list