forked from qt-creator/qt-creator
AutoTest: Fix handling of internal messages
When order results by applications is enabled some internal messages might end up in a wrong (or at least useless) position inside the results pane. For non-pure-global results we need to pass the id / application to avoid this. Change-Id: I4221326f9729547a1ee49eeb0ee4f82807444ae7 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -72,7 +72,7 @@ bool GTestResult::isDirectParentOf(const TestResult *other, bool *needsIntermedi
|
||||
if (m_testSetName == gtOther->m_testSetName) {
|
||||
const Result::Type otherResult = other->result();
|
||||
if (otherResult == Result::MessageInternal || otherResult == Result::MessageLocation)
|
||||
return result() != Result::MessageLocation;
|
||||
return result() != Result::MessageInternal && result() != Result::MessageLocation;
|
||||
}
|
||||
if (m_iteration != gtOther->m_iteration)
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user