summaryrefslogtreecommitdiff
path: root/plugins/autotest/testresultspane.cpp
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-06-12 13:00:10 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-06-19 14:56:06 +0300
commitc42bda94576bb6c9f7364414a58f86c55d171df9 (patch)
tree420702f1c66d84f35f1b50348abbdbf61cf7e2e6 /plugins/autotest/testresultspane.cpp
parent4605814c1d48f31fd150f32c2687596aeb3cb74e (diff)
downloadqt-creator-wip/at-squish.tar.gz
Handle squishrunner quickly returningwip/at-squish
Change-Id: Idc77d3fc5defd46e912b4ab0cdc4e82214ec75e9 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'plugins/autotest/testresultspane.cpp')
-rw-r--r--plugins/autotest/testresultspane.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp
index d2425ce80b..29c6549ffe 100644
--- a/plugins/autotest/testresultspane.cpp
+++ b/plugins/autotest/testresultspane.cpp
@@ -159,6 +159,8 @@ TestResultsPane::~TestResultsPane()
void TestResultsPane::addTestResult(const TestResult &result)
{
m_model->addTestResult(result);
+ if (result.result() >= Result::SQUISH_GROUP_BEGIN && result.result() <= Result::SQUISH_GROUP_END)
+ updateSquishSummaryLabel();
if (!m_treeView->isVisible())
popup(Core::IOutputPane::NoModeSwitch);
flash();