Include global data tags in teamcity's test function names

Use the standard mechanism instead of a hand-rolled way of identifying
function/data-tag combinations. Adds missing data relevant to
identifying test cases, some of which previously had apparently the
same name, with no hint at why the test-case was seemingly run
repeatedly.

Change-Id: I6225c6d1990069c94a1f1c8dbb179993b96076e7
Reviewed-by: Jason McDonald <macadder1@gmail.com>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
Edward Welbourne 2022-09-06 18:38:54 +02:00
parent ceba44a3bf
commit 5832087859
3 changed files with 437 additions and 433 deletions

View File

@ -257,14 +257,8 @@ void QTeamCityLogger::tcEscapedString(QTestCharBuffer *buf, const char *str) con
void QTeamCityLogger::escapedTestFuncName(QTestCharBuffer *buf) const
{
QTestCharBuffer fn, tag;
const char *raw = QTestResult::currentTestFunction();
tcEscapedString(&fn, raw ? raw : "UnknownTestFunc");
raw = QTestResult::currentDataTag();
if (raw)
tcEscapedString(&tag, raw);
QTest::qt_asprintf(buf, "%s(%s)", fn.constData(), tag.constData());
constexpr int TestTag = QTestPrivate::TestFunction | QTestPrivate::TestDataTag;
QTestPrivate::generateTestIdentifier(buf, TestTag);
}
void QTeamCityLogger::addPendingMessage(const char *type, const char *msg,

View File

@ -1,386 +1,396 @@
##teamcity[testSuiteStarted name='tst_ExtendedCompare' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='initTestCase()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='initTestCase()' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects()' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(0)): ClassWithDeferredSetter(0)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(-1)): ClassWithDeferredSetter(-1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout()' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(1)): ClassWithDeferredSetter(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout()' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareInts(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareInts(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareInts(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1.1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareFloats(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 1.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareFloats(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareFloats(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 0.1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareDoubles(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 0.1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareDoubles(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareDoubles(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 2|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='comparePointers(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 2' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='comparePointers(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='comparePointers(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): "nullptr"' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareToNullptr(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): "nullptr"|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareToNullptr(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareToNullptr(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): 1|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 0' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareUnregistereEnum(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): 0|n Right (rhs): 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareUnregistereEnum(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareUnregistereEnum(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): Sunday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): Monday|n Right (rhs): Monday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareRegistereEnum(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): Monday|n Right (rhs): Sunday' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareRegistereEnum(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareRegistereEnum(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(EQ:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(EQ:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(EQ:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(EQ:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(EQ:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(NE:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be different from right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(NE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(NE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(NE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(LT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(LT:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(LE:left > right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (lhs): MyClass(2)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(LE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(GT:left == right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GT:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(GT:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GT:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GT:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GE:left == right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='compareCustomTypes(GE:left < right)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (lhs): MyClass(1)|n Right (rhs): MyClass(2)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GE:left < right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='compareCustomTypes(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='compareCustomTypes(GE:left > right)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(EQ)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects(EQ)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be equal to right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(EQ)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(NE)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(NE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(LT)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(LT)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(LE)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(LE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(GT)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects(GT)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(GT)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonForTemporaryObjects(GE)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonForTemporaryObjects(GE)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than or equal to right value, but is not|n Left (getClassForValue(0).getValuePointer()): MyClass(2) on memory address with index 0|n Right (getClassForValue(1).getValuePointer()): MyClass(1) on memory address with index 1' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonForTemporaryObjects(GE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(EQ)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(EQ)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(NE)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(NE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(LT)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout(LT)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(0)): ClassWithDeferredSetter(0)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(LT)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(LE)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout(LE)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be less than or equal to right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(-1)): ClassWithDeferredSetter(-1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(LE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(GT)' flowId='tst_ExtendedCompare']
##teamcity[testFailed name='checkComparisonWithTimeout(GT)' message='Failure! |[Loc: qtbase/tests/auto/testlib/selftests/extendedcompare/tst_extendedcompare.cpp(0)|]' details='Left value is expected to be greater than right value, but is not|n Left (c) : ClassWithDeferredSetter(1)|n Right (ClassWithDeferredSetter(1)): ClassWithDeferredSetter(1)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(GT)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='checkComparisonWithTimeout(GE)' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='checkComparisonWithTimeout(GE)' flowId='tst_ExtendedCompare']
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_ExtendedCompare']
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_ExtendedCompare']
##teamcity[testSuiteFinished name='tst_ExtendedCompare' flowId='tst_ExtendedCompare']

View File

@ -2,51 +2,51 @@
##teamcity[testStarted name='initTestCase()' flowId='tst_globaldata']
##teamcity[testStdOut name='initTestCase()' out='QDEBUG: initTestCase initTestCase (null)' flowId='tst_globaldata']
##teamcity[testFinished name='initTestCase()' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(local=false)' out='QDEBUG: init testGlobal local=false|nQDEBUG: global: false|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(local=true)' out='QDEBUG: init testGlobal local=true|nQDEBUG: global: false|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(local=false)' out='QDEBUG: init testGlobal local=false|nQDEBUG: global: true|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(local=true)' out='QDEBUG: init testGlobal local=true|nQDEBUG: global: true|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skip()' flowId='tst_globaldata']
##teamcity[testIgnored name='skip()' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testFinished name='skip()' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(local=false)' out='QDEBUG: init skipLocal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(local=true)' out='QDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(local=false)' out='QDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipLocal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(local=true)' out='QDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(local=false)' out='QDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipSingle local=false|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipSingle(local=true)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(local=true)' out='QDEBUG: init skipSingle local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipSingle(local=false)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(local=false)' out='QDEBUG: cleanup skipSingle local=true|nQDEBUG: init skipSingle local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(local=true)' out='QDEBUG: cleanup skipSingle local=false|nQDEBUG: init skipSingle local=true|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(global=false:local=false)' out='QDEBUG: init testGlobal local=false|nQDEBUG: global: false|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(global=false:local=true)' out='QDEBUG: init testGlobal local=true|nQDEBUG: global: false|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(global=true:local=false)' out='QDEBUG: init testGlobal local=false|nQDEBUG: global: true|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='testGlobal(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='testGlobal(global=true:local=true)' out='QDEBUG: init testGlobal local=true|nQDEBUG: global: true|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='testGlobal(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skip(global=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skip(global=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testFinished name='skip(global=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(global=false:local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(global=false:local=false)' out='QDEBUG: init skipLocal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(global=false:local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(global=false:local=true)' out='QDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(global=true:local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(global=true:local=false)' out='QDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipLocal local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipLocal(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipLocal(global=true:local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipLocal(global=true:local=true)' out='QDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipLocal(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(global=false:local=false)' out='QDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipSingle local=false|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(global=false:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipSingle(global=false:local=true)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(global=false:local=true)' out='QDEBUG: init skipSingle local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(global=false:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testIgnored name='skipSingle(global=true:local=false)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(global=true:local=false)' out='QDEBUG: cleanup skipSingle local=true|nQDEBUG: init skipSingle local=false' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(global=true:local=false)' flowId='tst_globaldata']
##teamcity[testStarted name='skipSingle(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testStdOut name='skipSingle(global=true:local=true)' out='QDEBUG: cleanup skipSingle local=false|nQDEBUG: init skipSingle local=true|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local=true' flowId='tst_globaldata']
##teamcity[testFinished name='skipSingle(global=true:local=true)' flowId='tst_globaldata']
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_globaldata']
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanupTestCase cleanupTestCase (null)' flowId='tst_globaldata']
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_globaldata']