diff options
Diffstat (limited to 'Tools/WebKitTestRunner/TestController.cpp')
-rw-r--r-- | Tools/WebKitTestRunner/TestController.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/WebKitTestRunner/TestController.cpp b/Tools/WebKitTestRunner/TestController.cpp index badb64643..d18fe3f30 100644 --- a/Tools/WebKitTestRunner/TestController.cpp +++ b/Tools/WebKitTestRunner/TestController.cpp @@ -625,8 +625,10 @@ void TestController::runTestingServerLoop() void TestController::run() { - bool resetDone = resetStateToConsistentValues(); - ASSERT_UNUSED(resetDone, resetDone); + if (!resetStateToConsistentValues()) { + TestInvocation::dumpWebProcessUnresponsiveness("Failed to reset to consistent state before the first test"); + return; + } if (m_usingServerMode) runTestingServerLoop(); |