Changeset 136004 in webkit
- Timestamp:
- Nov 28, 2012, 6:12:30 AM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
WebKitTestRunner/TestInvocation.cpp (modified) (4 diffs)
-
WebKitTestRunner/TestInvocation.h (modified) (2 diffs)
-
WebKitTestRunner/cairo/TestInvocationCairo.cpp (modified) (1 diff)
-
WebKitTestRunner/qt/TestInvocationQt.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r135991 r136004 1 2012-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 1 21 2012-11-28 Thiago Marcos P. Santos <thiago.santos@intel.com> 2 22 -
trunk/Tools/WebKitTestRunner/TestInvocation.cpp
r135287 r136004 106 106 , m_gotRepaint(false) 107 107 , m_error(false) 108 , m_webProcessIsUnre nsponsive(false)108 , m_webProcessIsUnresponsive(false) 109 109 { 110 110 } … … 214 214 if (!m_gotInitialResponse) { 215 215 m_errorMessage = "Timed out waiting for initial response from web process\n"; 216 m_webProcessIsUnre nsponsive = true;216 m_webProcessIsUnresponsive = true; 217 217 goto end; 218 218 } … … 230 230 if (!m_gotFinalMessage) { 231 231 m_errorMessage = "Timed out waiting for final message from web process\n"; 232 m_webProcessIsUnre nsponsive = true;232 m_webProcessIsUnresponsive = true; 233 233 goto end; 234 234 } … … 244 244 #endif // ENABLE(INSPECTOR) 245 245 246 if (m_webProcessIsUnre nsponsive)246 if (m_webProcessIsUnresponsive) 247 247 dumpWebProcessUnresponsiveness(); 248 248 else if (!TestController::shared().resetStateToConsistentValues()) { -
trunk/Tools/WebKitTestRunner/TestInvocation.h
r135935 r136004 54 54 #if PLATFORM(QT) || PLATFORM(EFL) 55 55 static void forceRepaintDoneCallback(WKErrorRef, void* context); 56 void forceRepaintDone();57 56 #endif 58 57 … … 73 72 WKRetainPtr<WKArrayRef> m_repaintRects; 74 73 std::string m_errorMessage; 75 bool m_webProcessIsUnre nsponsive;74 bool m_webProcessIsUnresponsive; 76 75 77 76 }; -
trunk/Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp
r135935 r136004 130 130 m_error = true; 131 131 m_errorMessage = "Timed out waiting for repaint\n"; 132 m_webProcessIsUnre nsponsive = true;132 m_webProcessIsUnresponsive = true; 133 133 return; 134 134 } -
trunk/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp
r133768 r136004 86 86 m_error = true; 87 87 m_errorMessage = "Timed out waiting for repaint\n"; 88 m_webProcessIsUnre nsponsive = true;88 m_webProcessIsUnresponsive = true; 89 89 return; 90 90 }
Note:
See TracChangeset
for help on using the changeset viewer.