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

ossy at webkit.org ossy at webkit.org
Wed Dec 22 14:39:54 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3af3842cc9f1dbc169c5e22289671f240d9e0352
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 15 06:31:53 2010 +0000

    2010-10-14  Balazs Kelemen  <kbalazs at webkit.org>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] WTR is sloooow
            https://bugs.webkit.org/show_bug.cgi?id=47695
    
            * WebKitTestRunner/qt/TestControllerQt.cpp:
            Change the timer interval of RunUntilConditionLoop from
            50 milliseconds to 1 to avoid wasting time after the
            test had been finished.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69839 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 84e5247..33322c1 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-14  Balazs Kelemen  <kbalazs at webkit.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] WTR is sloooow
+        https://bugs.webkit.org/show_bug.cgi?id=47695
+
+        * WebKitTestRunner/qt/TestControllerQt.cpp:
+        Change the timer interval of RunUntilConditionLoop from
+        50 milliseconds to 1 to avoid wasting time after the 
+        test had been finished.
+
 2010-10-14  Eric Seidel  <eric at webkit.org>
 
         Unreviewed, just fixing an exception seen on the commit-queue.
diff --git a/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp b/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
index 4accde6..de9934f 100644
--- a/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
+++ b/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
@@ -38,7 +38,9 @@
 
 namespace WTR {
 
-static const unsigned kTimerIntervalMS = 50;
+// With a bigger interval we would waste to much time
+// after the test had been finished.
+static const unsigned kTimerIntervalMS = 1;
 
 class RunUntilConditionLoop : public QObject {
     Q_OBJECT

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list