Changeset 69839 in webkit


Ignore:
Timestamp:
Oct 14, 2010 11:31:53 PM (14 years ago)
Author:
Csaba Osztrogonác
Message:

2010-10-14 Balazs Kelemen <kbalazs@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.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r69832 r69839  
     12010-10-14  Balazs Kelemen  <kbalazs@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] WTR is sloooow
     6        https://bugs.webkit.org/show_bug.cgi?id=47695
     7
     8        * WebKitTestRunner/qt/TestControllerQt.cpp:
     9        Change the timer interval of RunUntilConditionLoop from
     10        50 milliseconds to 1 to avoid wasting time after the
     11        test had been finished.
     12
    1132010-10-14  Eric Seidel  <eric@webkit.org>
    214
  • trunk/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp

    r69581 r69839  
    3939namespace WTR {
    4040
    41 static const unsigned kTimerIntervalMS = 50;
     41// With a bigger interval we would waste to much time
     42// after the test had been finished.
     43static const unsigned kTimerIntervalMS = 1;
    4244
    4345class RunUntilConditionLoop : public QObject {
Note: See TracChangeset for help on using the changeset viewer.