aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2019-06-11 11:10:05 +0200
committerChristian Stenger <christian.stenger@qt.io>2019-06-12 10:27:36 +0000
commitd96c2e5d1677c25943a9d77bbefbc9300f647968 (patch)
tree909c9053383e7c30c0d30ffbdd36a133c70b397e /src/plugins/autotest
parent3172773f52fc4703631dae2495d15a2b42632d2e (diff)
AutoTest: Fix updating parent
Skip had been added mistakenly to the insignificant results. Do not handle Skip as an insignificant result as it will be correctly handled while updating the result. Fixes: QTCREATORBUG-22545 Change-Id: I3c09416934b1c747dd8160635b5bfaa46c31f5a4 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest')
-rw-r--r--src/plugins/autotest/testresultmodel.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/autotest/testresultmodel.cpp b/src/plugins/autotest/testresultmodel.cpp
index f07bc5f0085..a3c6ec28a86 100644
--- a/src/plugins/autotest/testresultmodel.cpp
+++ b/src/plugins/autotest/testresultmodel.cpp
@@ -116,7 +116,6 @@ void TestResultItem::updateDescription(const QString &description)
static bool isSignificant(ResultType type)
{
switch (type) {
- case ResultType::Skip:
case ResultType::Benchmark:
case ResultType::MessageInfo:
case ResultType::MessageInternal: