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

mrowe at apple.com mrowe at apple.com
Wed Dec 22 12:18:44 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6c3d3557d8e82101a24fdfb24ed8e0df089c5ba3
Author: mrowe at apple.com <mrowe at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 18 23:10:51 2010 +0000

    Make it so the WebKit2 test slave runs the WebKit2 tests
    
    Reviewed by Sam Weinig.
    
    * BuildSlaveSupport/build.webkit.org-config/master.cfg:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65638 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg b/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
index acedbd2..a0beddb 100644
--- a/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
+++ b/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
@@ -372,12 +372,13 @@ class BuildFactory(Factory):
             self.addStep(trigger.Trigger, schedulerNames=triggers)
 
 class TestFactory(Factory):
+    TestClass = RunWebKitTests
     def __init__(self, platform, configuration, architectures):
         Factory.__init__(self, platform, configuration, architectures, False)
         self.addStep(DownloadBuiltProduct)
         self.addStep(ExtractBuiltProduct)
         self.addStep(RunJavaScriptCoreTests, skipBuild=True)
-        self.addStep(RunWebKitTests, skipBuild=(platform == 'win'))
+        self.addStep(self.TestClass, skipBuild=(platform == 'win'))
         # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
         # Sadly we have no way to detect the version on the slave from here.
         if platform != "mac-tiger":
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 34fd84b..687ff69 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,11 @@
+2010-08-18  Mark Rowe  <mrowe at apple.com>
+
+        Reviewed by Sam Weinig.
+
+        Make it so the WebKit2 test slave runs the WebKit2 tests
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+
 2010-08-18  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Mark Rowe.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list