Changeset 136004 in webkit


Ignore:
Timestamp:
Nov 28, 2012, 6:12:30 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Minor cleanup in TestInvocation
https://bugs.webkit.org/show_bug.cgi?id=103512

Patch by Yael Aharon <yael.aharon@intel.com> on 2012-11-28
Reviewed by Kenneth Rohde Christiansen.

Remove a function declaration that is not defined and not used.
Fix spelling error in m_webProcessIsUnresponsive.

  • WebKitTestRunner/TestInvocation.cpp:

(WTR::TestInvocation::TestInvocation):
(WTR::TestInvocation::invoke):

  • WebKitTestRunner/TestInvocation.h:

(TestInvocation):

  • WebKitTestRunner/cairo/TestInvocationCairo.cpp:

(WTR::TestInvocation::dumpPixelsAndCompareWithExpected):

  • WebKitTestRunner/qt/TestInvocationQt.cpp:

(WTR::TestInvocation::dumpPixelsAndCompareWithExpected):

Location:
trunk/Tools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r135991 r136004  
     12012-11-28  Yael Aharon  <yael.aharon@intel.com>
     2
     3        Minor cleanup in TestInvocation
     4        https://bugs.webkit.org/show_bug.cgi?id=103512
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Remove a function declaration that is not defined and not used.
     9        Fix spelling error in m_webProcessIsUnresponsive.
     10
     11        * WebKitTestRunner/TestInvocation.cpp:
     12        (WTR::TestInvocation::TestInvocation):
     13        (WTR::TestInvocation::invoke):
     14        * WebKitTestRunner/TestInvocation.h:
     15        (TestInvocation):
     16        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
     17        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
     18        * WebKitTestRunner/qt/TestInvocationQt.cpp:
     19        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
     20
    1212012-11-28  Thiago Marcos P. Santos  <thiago.santos@intel.com>
    222
  • trunk/Tools/WebKitTestRunner/TestInvocation.cpp

    r135287 r136004  
    106106    , m_gotRepaint(false)
    107107    , m_error(false)
    108     , m_webProcessIsUnrensponsive(false)
     108    , m_webProcessIsUnresponsive(false)
    109109{
    110110}
     
    214214    if (!m_gotInitialResponse) {
    215215        m_errorMessage = "Timed out waiting for initial response from web process\n";
    216         m_webProcessIsUnrensponsive = true;
     216        m_webProcessIsUnresponsive = true;
    217217        goto end;
    218218    }
     
    230230    if (!m_gotFinalMessage) {
    231231        m_errorMessage = "Timed out waiting for final message from web process\n";
    232         m_webProcessIsUnrensponsive = true;
     232        m_webProcessIsUnresponsive = true;
    233233        goto end;
    234234    }
     
    244244#endif // ENABLE(INSPECTOR)
    245245
    246     if (m_webProcessIsUnrensponsive)
     246    if (m_webProcessIsUnresponsive)
    247247        dumpWebProcessUnresponsiveness();
    248248    else if (!TestController::shared().resetStateToConsistentValues()) {
  • trunk/Tools/WebKitTestRunner/TestInvocation.h

    r135935 r136004  
    5454#if PLATFORM(QT) || PLATFORM(EFL)
    5555    static void forceRepaintDoneCallback(WKErrorRef, void* context);
    56     void forceRepaintDone();
    5756#endif
    5857   
     
    7372    WKRetainPtr<WKArrayRef> m_repaintRects;
    7473    std::string m_errorMessage;
    75     bool m_webProcessIsUnrensponsive;
     74    bool m_webProcessIsUnresponsive;
    7675
    7776};
  • trunk/Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp

    r135935 r136004  
    130130        m_error = true;
    131131        m_errorMessage = "Timed out waiting for repaint\n";
    132         m_webProcessIsUnrensponsive = true;
     132        m_webProcessIsUnresponsive = true;
    133133        return;
    134134    }
  • trunk/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp

    r133768 r136004  
    8686            m_error = true;
    8787            m_errorMessage = "Timed out waiting for repaint\n";
    88             m_webProcessIsUnrensponsive = true;
     88            m_webProcessIsUnresponsive = true;
    8989            return;
    9090        }
Note: See TracChangeset for help on using the changeset viewer.