diff options
| author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-09 14:16:12 +0100 | 
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-09 14:16:12 +0100 | 
| commit | 03e12282df9aa1e1fb05a8b90f1cfc2e08764cec (patch) | |
| tree | 52599cd0ab782b1768e23ad176f7618f98333cb6 /Tools/WebKitTestRunner/TestInvocation.cpp | |
| parent | cd44dc59cdfc39534aef4d417e9f3c412e3be139 (diff) | |
| download | qtwebkit-03e12282df9aa1e1fb05a8b90f1cfc2e08764cec.tar.gz | |
Imported WebKit commit e09a82039aa4273ab318b71122e92d8e5f233525 (http://svn.webkit.org/repository/webkit/trunk@107223)
Diffstat (limited to 'Tools/WebKitTestRunner/TestInvocation.cpp')
| -rw-r--r-- | Tools/WebKitTestRunner/TestInvocation.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/Tools/WebKitTestRunner/TestInvocation.cpp b/Tools/WebKitTestRunner/TestInvocation.cpp index 8e3c22957..42a88512c 100644 --- a/Tools/WebKitTestRunner/TestInvocation.cpp +++ b/Tools/WebKitTestRunner/TestInvocation.cpp @@ -93,6 +93,7 @@ TestInvocation::TestInvocation(const std::string& pathOrURL)      : m_url(AdoptWK, createWKURL(pathOrURL.c_str()))      , m_pathOrURL(pathOrURL)      , m_dumpPixels(false) +    , m_skipPixelTestOption(false)      , m_gotInitialResponse(false)      , m_gotFinalMessage(false)      , m_gotRepaint(false) @@ -106,6 +107,8 @@ TestInvocation::~TestInvocation()  void TestInvocation::setIsPixelTest(const std::string& expectedPixelHash)  { +    if (m_skipPixelTestOption && !expectedPixelHash.length()) +        return;      m_dumpPixels = true;      m_expectedPixelHash = expectedPixelHash;  } | 
