Add flowId to messages when logging in TeamCity format
Added flowId='name' to each message when using TeamCity logging format. This is necessary to distinguish separate processes running in parallel. [ChangeLog][QtTest] Added flowId to messages when logging in TeamCity format. FlowId is used to distinguish logging from multiple processes running in parallel. Change-Id: I7f5046c1058ff02770404caa2c9b3a5398f97f6b Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
230c293f20
commit
8f03656211
@ -107,17 +107,15 @@ void QTeamCityLogger::startLogging()
|
|||||||
{
|
{
|
||||||
QAbstractTestLogger::startLogging();
|
QAbstractTestLogger::startLogging();
|
||||||
|
|
||||||
QString testSuiteName = tcEscapedString(QString::fromUtf8(QTestResult::currentTestObjectName()));
|
flowID = tcEscapedString(QString::fromUtf8(QTestResult::currentTestObjectName()));
|
||||||
|
|
||||||
QString str = QString(QLatin1String("##teamcity[testSuiteStarted name='%1']\n")).arg(testSuiteName);
|
QString str = QString(QLatin1String("##teamcity[testSuiteStarted name='%1' flowId='%1']\n")).arg(flowID);
|
||||||
outputString(qPrintable(str));
|
outputString(qPrintable(str));
|
||||||
}
|
}
|
||||||
|
|
||||||
void QTeamCityLogger::stopLogging()
|
void QTeamCityLogger::stopLogging()
|
||||||
{
|
{
|
||||||
QString testSuiteName = tcEscapedString(QString::fromUtf8(QTestResult::currentTestObjectName()));
|
QString str = QString(QLatin1String("##teamcity[testSuiteFinished name='%1' flowId='%1']\n")).arg(flowID);
|
||||||
|
|
||||||
QString str = QString(QLatin1String("##teamcity[testSuiteFinished name='%1']\n")).arg(testSuiteName);
|
|
||||||
outputString(qPrintable(str));
|
outputString(qPrintable(str));
|
||||||
|
|
||||||
QAbstractTestLogger::stopLogging();
|
QAbstractTestLogger::stopLogging();
|
||||||
@ -145,7 +143,7 @@ void QTeamCityLogger::addIncident(IncidentTypes type, const char *description,
|
|||||||
QString tmpFuncName = escapedTestFuncName();
|
QString tmpFuncName = escapedTestFuncName();
|
||||||
|
|
||||||
if (tmpFuncName != currTestFuncName) {
|
if (tmpFuncName != currTestFuncName) {
|
||||||
buf = QString(QLatin1String("##teamcity[testStarted name='%1']\n")).arg(tmpFuncName);
|
buf = QString(QLatin1String("##teamcity[testStarted name='%1' flowId='%2']\n")).arg(tmpFuncName, flowID);
|
||||||
outputString(qPrintable(buf));
|
outputString(qPrintable(buf));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,24 +164,25 @@ void QTeamCityLogger::addIncident(IncidentTypes type, const char *description,
|
|||||||
if (file)
|
if (file)
|
||||||
messageText += QString(QLatin1String(" |[Loc: %1(%2)|]")).arg(QString::fromUtf8(file)).arg(line);
|
messageText += QString(QLatin1String(" |[Loc: %1(%2)|]")).arg(QString::fromUtf8(file)).arg(line);
|
||||||
|
|
||||||
buf = QString(QLatin1String("##teamcity[testFailed name='%1' message='%2' details='%3']\n"))
|
buf = QString(QLatin1String("##teamcity[testFailed name='%1' message='%2' details='%3' flowId='%4']\n"))
|
||||||
.arg(tmpFuncName,
|
.arg(tmpFuncName,
|
||||||
messageText,
|
messageText,
|
||||||
detailedText);
|
detailedText,
|
||||||
|
flowID);
|
||||||
|
|
||||||
outputString(qPrintable(buf));
|
outputString(qPrintable(buf));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pendingMessages.isEmpty()) {
|
if (!pendingMessages.isEmpty()) {
|
||||||
buf = QString(QLatin1String("##teamcity[testStdOut name='%1' out='%2']\n"))
|
buf = QString(QLatin1String("##teamcity[testStdOut name='%1' out='%2' flowId='%3']\n"))
|
||||||
.arg(tmpFuncName, pendingMessages);
|
.arg(tmpFuncName, pendingMessages, flowID);
|
||||||
|
|
||||||
outputString(qPrintable(buf));
|
outputString(qPrintable(buf));
|
||||||
|
|
||||||
pendingMessages.clear();
|
pendingMessages.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
buf = QString(QLatin1String("##teamcity[testFinished name='%1']\n")).arg(tmpFuncName);
|
buf = QString(QLatin1String("##teamcity[testFinished name='%1' flowId='%2']\n")).arg(tmpFuncName, flowID);
|
||||||
outputString(qPrintable(buf));
|
outputString(qPrintable(buf));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -207,8 +206,8 @@ void QTeamCityLogger::addMessage(MessageTypes type, const QString &message,
|
|||||||
if (file)
|
if (file)
|
||||||
escapedMessage.append(QString(QLatin1String(" |[Loc: %1(%2)|]")).arg(QString::fromUtf8(file)).arg(line));
|
escapedMessage.append(QString(QLatin1String(" |[Loc: %1(%2)|]")).arg(QString::fromUtf8(file)).arg(line));
|
||||||
|
|
||||||
buf = QString(QLatin1String("##teamcity[testIgnored name='%1' message='%2']\n"))
|
buf = QString(QLatin1String("##teamcity[testIgnored name='%1' message='%2' flowId='%3']\n"))
|
||||||
.arg(escapedTestFuncName(), escapedMessage);
|
.arg(escapedTestFuncName(), escapedMessage, flowID);
|
||||||
|
|
||||||
outputString(qPrintable(buf));
|
outputString(qPrintable(buf));
|
||||||
}
|
}
|
||||||
|
@ -79,6 +79,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
QString currTestFuncName;
|
QString currTestFuncName;
|
||||||
QString pendingMessages;
|
QString pendingMessages;
|
||||||
|
QString flowID;
|
||||||
|
|
||||||
QString tcEscapedString(const QString &str) const;
|
QString tcEscapedString(const QString &str) const;
|
||||||
QString escapedTestFuncName() const;
|
QString escapedTestFuncName() const;
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Assert']
|
##teamcity[testSuiteStarted name='tst_Assert' flowId='tst_Assert']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Assert']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Assert']
|
||||||
##teamcity[testStarted name='testNumber1()']
|
##teamcity[testStarted name='testNumber1()' flowId='tst_Assert']
|
||||||
##teamcity[testFinished name='testNumber1()']
|
##teamcity[testFinished name='testNumber1()' flowId='tst_Assert']
|
||||||
##teamcity[testStarted name='testNumber2()']
|
##teamcity[testStarted name='testNumber2()' flowId='tst_Assert']
|
||||||
##teamcity[testFailed name='testNumber2()' message='Failure! |[Loc: Unknown file(0)|]' details='Received a fatal error.']
|
##teamcity[testFailed name='testNumber2()' message='Failure! |[Loc: Unknown file(0)|]' details='Received a fatal error.' flowId='tst_Assert']
|
||||||
##teamcity[testStdOut name='testNumber2()' out='QFATAL: ASSERT: "false" in file tst_assert.cpp, line 58']
|
##teamcity[testStdOut name='testNumber2()' out='QFATAL: ASSERT: "false" in file tst_assert.cpp, line 58' flowId='tst_Assert']
|
||||||
##teamcity[testFinished name='testNumber2()']
|
##teamcity[testFinished name='testNumber2()' flowId='tst_Assert']
|
||||||
##teamcity[testSuiteFinished name='tst_Assert']
|
##teamcity[testSuiteFinished name='tst_Assert' flowId='tst_Assert']
|
||||||
|
@ -1,50 +1,50 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_BadXml']
|
##teamcity[testSuiteStarted name='tst_BadXml' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(fail end cdata |]|]> text |]|]> more text)']
|
##teamcity[testStarted name='badDataTag(fail end cdata |]|]> text |]|]> more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testFailed name='badDataTag(fail end cdata |]|]> text |]|]> more text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure']
|
##teamcity[testFailed name='badDataTag(fail end cdata |]|]> text |]|]> more text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(fail end cdata |]|]> text |]|]> more text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(fail end cdata |]|]> text |]|]> more text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(fail end cdata |]|]> text |]|]> more text)']
|
##teamcity[testFinished name='badDataTag(fail end cdata |]|]> text |]|]> more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(pass end cdata |]|]> text |]|]> more text)']
|
##teamcity[testStarted name='badDataTag(pass end cdata |]|]> text |]|]> more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(pass end cdata |]|]> text |]|]> more text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(pass end cdata |]|]> text |]|]> more text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(pass end cdata |]|]> text |]|]> more text)']
|
##teamcity[testFinished name='badDataTag(pass end cdata |]|]> text |]|]> more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(fail quotes " text" more text)']
|
##teamcity[testStarted name='badDataTag(fail quotes " text" more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testFailed name='badDataTag(fail quotes " text" more text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure']
|
##teamcity[testFailed name='badDataTag(fail quotes " text" more text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(fail quotes " text" more text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(fail quotes " text" more text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(fail quotes " text" more text)']
|
##teamcity[testFinished name='badDataTag(fail quotes " text" more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(pass quotes " text" more text)']
|
##teamcity[testStarted name='badDataTag(pass quotes " text" more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(pass quotes " text" more text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(pass quotes " text" more text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(pass quotes " text" more text)']
|
##teamcity[testFinished name='badDataTag(pass quotes " text" more text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(fail xml close > open < tags < text)']
|
##teamcity[testStarted name='badDataTag(fail xml close > open < tags < text)' flowId='tst_BadXml']
|
||||||
##teamcity[testFailed name='badDataTag(fail xml close > open < tags < text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure']
|
##teamcity[testFailed name='badDataTag(fail xml close > open < tags < text)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(fail xml close > open < tags < text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(fail xml close > open < tags < text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(fail xml close > open < tags < text)']
|
##teamcity[testFinished name='badDataTag(fail xml close > open < tags < text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(pass xml close > open < tags < text)']
|
##teamcity[testStarted name='badDataTag(pass xml close > open < tags < text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(pass xml close > open < tags < text)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(pass xml close > open < tags < text)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(pass xml close > open < tags < text)']
|
##teamcity[testFinished name='badDataTag(pass xml close > open < tags < text)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)']
|
##teamcity[testStarted name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' flowId='tst_BadXml']
|
||||||
##teamcity[testFailed name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure']
|
##teamcity[testFailed name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' message='Failure! |[Loc: tst_badxml.cpp(106)|]' details='a failure' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)']
|
##teamcity[testFinished name='badDataTag(fail all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)']
|
##teamcity[testStarted name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' out='QDEBUG: a message']
|
##teamcity[testStdOut name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' out='QDEBUG: a message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)']
|
##teamcity[testFinished name='badDataTag(pass all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badMessage(string 0)']
|
##teamcity[testStarted name='badMessage(string 0)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badMessage(string 0)' out='QDEBUG: end cdata |]|]> text |]|]> more text']
|
##teamcity[testStdOut name='badMessage(string 0)' out='QDEBUG: end cdata |]|]> text |]|]> more text' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badMessage(string 0)']
|
##teamcity[testFinished name='badMessage(string 0)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badMessage(string 1)']
|
##teamcity[testStarted name='badMessage(string 1)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badMessage(string 1)' out='QDEBUG: quotes " text" more text']
|
##teamcity[testStdOut name='badMessage(string 1)' out='QDEBUG: quotes " text" more text' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badMessage(string 1)']
|
##teamcity[testFinished name='badMessage(string 1)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badMessage(string 2)']
|
##teamcity[testStarted name='badMessage(string 2)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badMessage(string 2)' out='QDEBUG: xml close > open < tags < text']
|
##teamcity[testStdOut name='badMessage(string 2)' out='QDEBUG: xml close > open < tags < text' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badMessage(string 2)']
|
##teamcity[testFinished name='badMessage(string 2)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='badMessage(string 3)']
|
##teamcity[testStarted name='badMessage(string 3)' flowId='tst_BadXml']
|
||||||
##teamcity[testStdOut name='badMessage(string 3)' out='QDEBUG: all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs']
|
##teamcity[testStdOut name='badMessage(string 3)' out='QDEBUG: all > " mixed |]|]> up > " in < the |]|]> hopes < of triggering "< |]|]> bugs' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='badMessage(string 3)']
|
##teamcity[testFinished name='badMessage(string 3)' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='failWithNoFile()']
|
##teamcity[testStarted name='failWithNoFile()' flowId='tst_BadXml']
|
||||||
##teamcity[testFailed name='failWithNoFile()' message='Failure!' details='failure message']
|
##teamcity[testFailed name='failWithNoFile()' message='Failure!' details='failure message' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='failWithNoFile()']
|
##teamcity[testFinished name='failWithNoFile()' flowId='tst_BadXml']
|
||||||
##teamcity[testIgnored name='encoding()' message='Skipped for text due to unpredictable console encoding. |[Loc: tst_badxml.cpp(131)|]']
|
##teamcity[testIgnored name='encoding()' message='Skipped for text due to unpredictable console encoding. |[Loc: tst_badxml.cpp(131)|]' flowId='tst_BadXml']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_BadXml']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_BadXml']
|
||||||
##teamcity[testSuiteFinished name='tst_BadXml']
|
##teamcity[testSuiteFinished name='tst_BadXml' flowId='tst_BadXml']
|
||||||
|
@ -1,122 +1,122 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Cmptest']
|
##teamcity[testSuiteStarted name='tst_Cmptest' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_unregistered_enums()']
|
##teamcity[testStarted name='compare_unregistered_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_unregistered_enums()' message='Failure! |[Loc: tst_cmptest.cpp(160)|]' details='Compared values are not the same']
|
##teamcity[testFailed name='compare_unregistered_enums()' message='Failure! |[Loc: tst_cmptest.cpp(160)|]' details='Compared values are not the same' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_unregistered_enums()']
|
##teamcity[testFinished name='compare_unregistered_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_registered_enums()']
|
##teamcity[testStarted name='compare_registered_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_registered_enums()' message='Failure! |[Loc: tst_cmptest.cpp(167)|]' details='Compared values are not the same|n Actual (Qt::Monday): Monday|n Expected (Qt::Sunday): Sunday']
|
##teamcity[testFailed name='compare_registered_enums()' message='Failure! |[Loc: tst_cmptest.cpp(167)|]' details='Compared values are not the same|n Actual (Qt::Monday): Monday|n Expected (Qt::Sunday): Sunday' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_registered_enums()']
|
##teamcity[testFinished name='compare_registered_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_class_enums()']
|
##teamcity[testStarted name='compare_class_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_class_enums()' message='Failure! |[Loc: tst_cmptest.cpp(173)|]' details='Compared values are not the same|n Actual (MyClassEnum::MyClassEnumValue1): MyClassEnumValue1|n Expected (MyClassEnum::MyClassEnumValue2): MyClassEnumValue2']
|
##teamcity[testFailed name='compare_class_enums()' message='Failure! |[Loc: tst_cmptest.cpp(173)|]' details='Compared values are not the same|n Actual (MyClassEnum::MyClassEnumValue1): MyClassEnumValue1|n Expected (MyClassEnum::MyClassEnumValue2): MyClassEnumValue2' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_class_enums()']
|
##teamcity[testFinished name='compare_class_enums()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_boolfuncs()']
|
##teamcity[testStarted name='compare_boolfuncs()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_boolfuncs()']
|
##teamcity[testFinished name='compare_boolfuncs()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_to_nullptr()']
|
##teamcity[testStarted name='compare_to_nullptr()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_to_nullptr()']
|
##teamcity[testFinished name='compare_to_nullptr()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_pointerfuncs()']
|
##teamcity[testStarted name='compare_pointerfuncs()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_pointerfuncs()']
|
##teamcity[testFinished name='compare_pointerfuncs()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_tostring(int, string)']
|
##teamcity[testStarted name='compare_tostring(int, string)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_tostring(int, string)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(int,123)|n Expected (expected): QVariant(QString,hi)']
|
##teamcity[testFailed name='compare_tostring(int, string)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(int,123)|n Expected (expected): QVariant(QString,hi)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_tostring(int, string)']
|
##teamcity[testFinished name='compare_tostring(int, string)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_tostring(both invalid)']
|
##teamcity[testStarted name='compare_tostring(both invalid)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_tostring(both invalid)']
|
##teamcity[testFinished name='compare_tostring(both invalid)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_tostring(null hash, invalid)']
|
##teamcity[testStarted name='compare_tostring(null hash, invalid)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_tostring(null hash, invalid)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(QVariantHash)|n Expected (expected): QVariant()']
|
##teamcity[testFailed name='compare_tostring(null hash, invalid)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(QVariantHash)|n Expected (expected): QVariant()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_tostring(null hash, invalid)']
|
##teamcity[testFinished name='compare_tostring(null hash, invalid)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_tostring(string, null user type)']
|
##teamcity[testStarted name='compare_tostring(string, null user type)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_tostring(string, null user type)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(QString,A simple string)|n Expected (expected): QVariant(PhonyClass)']
|
##teamcity[testFailed name='compare_tostring(string, null user type)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(QString,A simple string)|n Expected (expected): QVariant(PhonyClass)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_tostring(string, null user type)']
|
##teamcity[testFinished name='compare_tostring(string, null user type)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compare_tostring(both non-null user type)']
|
##teamcity[testStarted name='compare_tostring(both non-null user type)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compare_tostring(both non-null user type)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(PhonyClass,<value not representable as string>)|n Expected (expected): QVariant(PhonyClass,<value not representable as string>)']
|
##teamcity[testFailed name='compare_tostring(both non-null user type)' message='Failure! |[Loc: tst_cmptest.cpp(262)|]' details='Compared values are not the same|n Actual (actual) : QVariant(PhonyClass,<value not representable as string>)|n Expected (expected): QVariant(PhonyClass,<value not representable as string>)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compare_tostring(both non-null user type)']
|
##teamcity[testFinished name='compare_tostring(both non-null user type)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(empty lists)']
|
##teamcity[testStarted name='compareQStringLists(empty lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(empty lists)']
|
##teamcity[testFinished name='compareQStringLists(empty lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(equal lists)']
|
##teamcity[testStarted name='compareQStringLists(equal lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(equal lists)']
|
##teamcity[testFinished name='compareQStringLists(equal lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(last item different)']
|
##teamcity[testStarted name='compareQStringLists(last item different)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQStringLists(last item different)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists differ at index 2.|n Actual (opA): "string3"|n Expected (opB): "DIFFERS"']
|
##teamcity[testFailed name='compareQStringLists(last item different)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists differ at index 2.|n Actual (opA): "string3"|n Expected (opB): "DIFFERS"' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(last item different)']
|
##teamcity[testFinished name='compareQStringLists(last item different)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(second-last item different)']
|
##teamcity[testStarted name='compareQStringLists(second-last item different)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQStringLists(second-last item different)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists differ at index 2.|n Actual (opA): "string3"|n Expected (opB): "DIFFERS"']
|
##teamcity[testFailed name='compareQStringLists(second-last item different)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists differ at index 2.|n Actual (opA): "string3"|n Expected (opB): "DIFFERS"' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(second-last item different)']
|
##teamcity[testFinished name='compareQStringLists(second-last item different)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(prefix)']
|
##teamcity[testStarted name='compareQStringLists(prefix)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQStringLists(prefix)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 2|n Expected (opB) size: 1']
|
##teamcity[testFailed name='compareQStringLists(prefix)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 2|n Expected (opB) size: 1' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(prefix)']
|
##teamcity[testFinished name='compareQStringLists(prefix)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(short list second)']
|
##teamcity[testStarted name='compareQStringLists(short list second)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQStringLists(short list second)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 12|n Expected (opB) size: 1']
|
##teamcity[testFailed name='compareQStringLists(short list second)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 12|n Expected (opB) size: 1' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(short list second)']
|
##teamcity[testFinished name='compareQStringLists(short list second)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQStringLists(short list first)']
|
##teamcity[testStarted name='compareQStringLists(short list first)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQStringLists(short list first)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 1|n Expected (opB) size: 12']
|
##teamcity[testFailed name='compareQStringLists(short list first)' message='Failure! |[Loc: tst_cmptest.cpp(356)|]' details='Compared lists have different sizes.|n Actual (opA) size: 1|n Expected (opB) size: 12' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQStringLists(short list first)']
|
##teamcity[testFinished name='compareQStringLists(short list first)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQListInt()']
|
##teamcity[testStarted name='compareQListInt()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQListInt()' message='Failure! |[Loc: tst_cmptest.cpp(363)|]' details='Compared lists differ at index 2.|n Actual (int1): 3|n Expected (int2): 4']
|
##teamcity[testFailed name='compareQListInt()' message='Failure! |[Loc: tst_cmptest.cpp(363)|]' details='Compared lists differ at index 2.|n Actual (int1): 3|n Expected (int2): 4' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQListInt()']
|
##teamcity[testFinished name='compareQListInt()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQListDouble()']
|
##teamcity[testStarted name='compareQListDouble()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQListDouble()' message='Failure! |[Loc: tst_cmptest.cpp(370)|]' details='Compared lists differ at index 0.|n Actual (double1): 1.5|n Expected (double2): 1']
|
##teamcity[testFailed name='compareQListDouble()' message='Failure! |[Loc: tst_cmptest.cpp(370)|]' details='Compared lists differ at index 0.|n Actual (double1): 1.5|n Expected (double2): 1' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQListDouble()']
|
##teamcity[testFinished name='compareQListDouble()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQColor()']
|
##teamcity[testStarted name='compareQColor()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQColor()' message='Failure! |[Loc: tst_cmptest.cpp(380)|]' details='Compared values are not the same|n Actual (yellow): #ffff00|n Expected (green) : #00ff00']
|
##teamcity[testFailed name='compareQColor()' message='Failure! |[Loc: tst_cmptest.cpp(380)|]' details='Compared values are not the same|n Actual (yellow): #ffff00|n Expected (green) : #00ff00' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQColor()']
|
##teamcity[testFinished name='compareQColor()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(both null)']
|
##teamcity[testStarted name='compareQPixmaps(both null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(both null)']
|
##teamcity[testFinished name='compareQPixmaps(both null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(one null)']
|
##teamcity[testStarted name='compareQPixmaps(one null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQPixmaps(one null)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ.|n Actual (opA).isNull(): 1|n Expected (opB).isNull(): 0']
|
##teamcity[testFailed name='compareQPixmaps(one null)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ.|n Actual (opA).isNull(): 1|n Expected (opB).isNull(): 0' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(one null)']
|
##teamcity[testFinished name='compareQPixmaps(one null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(other null)']
|
##teamcity[testStarted name='compareQPixmaps(other null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQPixmaps(other null)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ.|n Actual (opA).isNull(): 0|n Expected (opB).isNull(): 1']
|
##teamcity[testFailed name='compareQPixmaps(other null)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ.|n Actual (opA).isNull(): 0|n Expected (opB).isNull(): 1' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(other null)']
|
##teamcity[testFinished name='compareQPixmaps(other null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(equal)']
|
##teamcity[testStarted name='compareQPixmaps(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(equal)']
|
##teamcity[testFinished name='compareQPixmaps(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(different size)']
|
##teamcity[testStarted name='compareQPixmaps(different size)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQPixmaps(different size)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ in size.|n Actual (opA): 11x20|n Expected (opB): 20x20']
|
##teamcity[testFailed name='compareQPixmaps(different size)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared QPixmaps differ in size.|n Actual (opA): 11x20|n Expected (opB): 20x20' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(different size)']
|
##teamcity[testFinished name='compareQPixmaps(different size)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQPixmaps(different pixels)']
|
##teamcity[testStarted name='compareQPixmaps(different pixels)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQPixmaps(different pixels)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared values are not the same']
|
##teamcity[testFailed name='compareQPixmaps(different pixels)' message='Failure! |[Loc: tst_cmptest.cpp(405)|]' details='Compared values are not the same' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQPixmaps(different pixels)']
|
##teamcity[testFinished name='compareQPixmaps(different pixels)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(both null)']
|
##teamcity[testStarted name='compareQImages(both null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(both null)']
|
##teamcity[testFinished name='compareQImages(both null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(one null)']
|
##teamcity[testStarted name='compareQImages(one null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQImages(one null)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ.|n Actual (opA).isNull(): 1|n Expected (opB).isNull(): 0']
|
##teamcity[testFailed name='compareQImages(one null)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ.|n Actual (opA).isNull(): 1|n Expected (opB).isNull(): 0' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(one null)']
|
##teamcity[testFinished name='compareQImages(one null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(other null)']
|
##teamcity[testStarted name='compareQImages(other null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQImages(other null)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ.|n Actual (opA).isNull(): 0|n Expected (opB).isNull(): 1']
|
##teamcity[testFailed name='compareQImages(other null)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ.|n Actual (opA).isNull(): 0|n Expected (opB).isNull(): 1' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(other null)']
|
##teamcity[testFinished name='compareQImages(other null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(equal)']
|
##teamcity[testStarted name='compareQImages(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(equal)']
|
##teamcity[testFinished name='compareQImages(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(different size)']
|
##teamcity[testStarted name='compareQImages(different size)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQImages(different size)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ in size.|n Actual (opA): 11x20|n Expected (opB): 20x20']
|
##teamcity[testFailed name='compareQImages(different size)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ in size.|n Actual (opA): 11x20|n Expected (opB): 20x20' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(different size)']
|
##teamcity[testFinished name='compareQImages(different size)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(different format)']
|
##teamcity[testStarted name='compareQImages(different format)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQImages(different format)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ in format.|n Actual (opA): 6|n Expected (opB): 3']
|
##teamcity[testFailed name='compareQImages(different format)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared QImages differ in format.|n Actual (opA): 6|n Expected (opB): 3' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(different format)']
|
##teamcity[testFinished name='compareQImages(different format)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQImages(different pixels)']
|
##teamcity[testStarted name='compareQImages(different pixels)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQImages(different pixels)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared values are not the same']
|
##teamcity[testFailed name='compareQImages(different pixels)' message='Failure! |[Loc: tst_cmptest.cpp(432)|]' details='Compared values are not the same' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQImages(different pixels)']
|
##teamcity[testFinished name='compareQImages(different pixels)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQRegion(equal-empty)']
|
##teamcity[testStarted name='compareQRegion(equal-empty)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQRegion(equal-empty)']
|
##teamcity[testFinished name='compareQRegion(equal-empty)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQRegion(1-empty)']
|
##teamcity[testStarted name='compareQRegion(1-empty)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQRegion(1-empty)' message='Failure! |[Loc: tst_cmptest.cpp(455)|]' details='Compared values are not the same|n Actual (rA): QRegion(200x50+10+10)|n Expected (rB): QRegion(null)']
|
##teamcity[testFailed name='compareQRegion(1-empty)' message='Failure! |[Loc: tst_cmptest.cpp(455)|]' details='Compared values are not the same|n Actual (rA): QRegion(200x50+10+10)|n Expected (rB): QRegion(null)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQRegion(1-empty)']
|
##teamcity[testFinished name='compareQRegion(1-empty)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQRegion(equal)']
|
##teamcity[testStarted name='compareQRegion(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQRegion(equal)']
|
##teamcity[testFinished name='compareQRegion(equal)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='compareQRegion(different lists)']
|
##teamcity[testStarted name='compareQRegion(different lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='compareQRegion(different lists)' message='Failure! |[Loc: tst_cmptest.cpp(455)|]' details='Compared values are not the same|n Actual (rA): QRegion(200x50+10+10)|n Expected (rB): QRegion(2 rectangles, 50x200+100+200, 200x50+10+10)']
|
##teamcity[testFailed name='compareQRegion(different lists)' message='Failure! |[Loc: tst_cmptest.cpp(455)|]' details='Compared values are not the same|n Actual (rA): QRegion(200x50+10+10)|n Expected (rB): QRegion(2 rectangles, 50x200+100+200, 200x50+10+10)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='compareQRegion(different lists)']
|
##teamcity[testFinished name='compareQRegion(different lists)' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='verify()']
|
##teamcity[testStarted name='verify()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='verify()' message='Failure! |[Loc: tst_cmptest.cpp(467)|]' details='|'opaqueFunc() < 2|' returned FALSE. ()']
|
##teamcity[testFailed name='verify()' message='Failure! |[Loc: tst_cmptest.cpp(467)|]' details='|'opaqueFunc() < 2|' returned FALSE. ()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='verify()']
|
##teamcity[testFinished name='verify()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='verify2()']
|
##teamcity[testStarted name='verify2()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='verify2()' message='Failure! |[Loc: tst_cmptest.cpp(473)|]' details='|'opaqueFunc() < 2|' returned FALSE. (42)']
|
##teamcity[testFailed name='verify2()' message='Failure! |[Loc: tst_cmptest.cpp(473)|]' details='|'opaqueFunc() < 2|' returned FALSE. (42)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='verify2()']
|
##teamcity[testFinished name='verify2()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='tryVerify()']
|
##teamcity[testStarted name='tryVerify()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='tryVerify()' message='Failure! |[Loc: tst_cmptest.cpp(479)|]' details='|'opaqueFunc() < 2|' returned FALSE. ()']
|
##teamcity[testFailed name='tryVerify()' message='Failure! |[Loc: tst_cmptest.cpp(479)|]' details='|'opaqueFunc() < 2|' returned FALSE. ()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='tryVerify()']
|
##teamcity[testFinished name='tryVerify()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='tryVerify2()']
|
##teamcity[testStarted name='tryVerify2()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFailed name='tryVerify2()' message='Failure! |[Loc: tst_cmptest.cpp(485)|]' details='|'opaqueFunc() < 2|' returned FALSE. (42)']
|
##teamcity[testFailed name='tryVerify2()' message='Failure! |[Loc: tst_cmptest.cpp(485)|]' details='|'opaqueFunc() < 2|' returned FALSE. (42)' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='tryVerify2()']
|
##teamcity[testFinished name='tryVerify2()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='verifyExplicitOperatorBool()']
|
##teamcity[testStarted name='verifyExplicitOperatorBool()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='verifyExplicitOperatorBool()']
|
##teamcity[testFinished name='verifyExplicitOperatorBool()' flowId='tst_Cmptest']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Cmptest']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Cmptest']
|
||||||
##teamcity[testSuiteFinished name='tst_Cmptest']
|
##teamcity[testSuiteFinished name='tst_Cmptest' flowId='tst_Cmptest']
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_DataTable']
|
##teamcity[testSuiteStarted name='tst_DataTable' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data1)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data1)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data1)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data1)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data2)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data2)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data2)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data2)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data3)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data3)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data3)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data3)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data4)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data4)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data4)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data4)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data5)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data5)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data5)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data5)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data1)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data1)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)']
|
##teamcity[testStdOut name='fiveTablePasses(fiveTablePasses_data1)' out='INFO |[Loc: tst_commandlinedata.cpp(57)|]: QVERIFY(test)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data1)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testSuiteFinished name='tst_DataTable']
|
##teamcity[testSuiteFinished name='tst_DataTable' flowId='tst_DataTable']
|
||||||
|
@ -1,68 +1,68 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Counting']
|
##teamcity[testSuiteStarted name='tst_Counting' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 1)']
|
##teamcity[testStarted name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 1)']
|
##teamcity[testFinished name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 2)']
|
##teamcity[testStarted name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 2)']
|
##teamcity[testFinished name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassSkip(row 1)']
|
##teamcity[testStarted name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassSkip(row 1)']
|
##teamcity[testFinished name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 1)']
|
##teamcity[testStarted name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 1)']
|
##teamcity[testFinished name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 2)']
|
##teamcity[testStarted name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 2)']
|
##teamcity[testFinished name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipPass(row 2)']
|
##teamcity[testStarted name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipPass(row 2)']
|
##teamcity[testFinished name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipFail(row 2)']
|
##teamcity[testStarted name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipFail(row 2)']
|
##teamcity[testFinished name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 1)']
|
##teamcity[testStarted name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 1)']
|
##teamcity[testFinished name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 2)']
|
##teamcity[testStarted name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 2)']
|
##teamcity[testFinished name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailSkip(row 1)']
|
##teamcity[testStarted name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailSkip(row 1)']
|
##teamcity[testFinished name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 1)']
|
##teamcity[testStarted name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 1)']
|
##teamcity[testFinished name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 2)']
|
##teamcity[testStarted name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 2)']
|
##teamcity[testFinished name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(before)']
|
##teamcity[testStarted name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(before)']
|
##teamcity[testFinished name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(fail)']
|
##teamcity[testStarted name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: tst_counting.cpp(226)|]' details='Fail in init()']
|
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: tst_counting.cpp(226)|]' details='Fail in init()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(fail)']
|
##teamcity[testFinished name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(after)']
|
##teamcity[testStarted name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(after)']
|
##teamcity[testFinished name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(before)']
|
##teamcity[testStarted name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(before)']
|
##teamcity[testFinished name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(fail)']
|
##teamcity[testStarted name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: tst_counting.cpp(234)|]' details='Fail in cleanup()']
|
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: tst_counting.cpp(234)|]' details='Fail in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()']
|
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(fail)']
|
##teamcity[testFinished name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(after)']
|
##teamcity[testStarted name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(after)']
|
##teamcity[testFinished name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(before)']
|
##teamcity[testStarted name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(before)']
|
##teamcity[testFinished name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: tst_counting.cpp(228)|]']
|
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: tst_counting.cpp(228)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(after)']
|
##teamcity[testStarted name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(after)']
|
##teamcity[testFinished name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(before)']
|
##teamcity[testStarted name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(before)']
|
##teamcity[testFinished name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: tst_counting.cpp(236)|]']
|
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: tst_counting.cpp(236)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(after)']
|
##teamcity[testStarted name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()']
|
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(after)']
|
##teamcity[testFinished name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testSuiteFinished name='tst_Counting']
|
##teamcity[testSuiteFinished name='tst_Counting' flowId='tst_Counting']
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_DataTable']
|
##teamcity[testSuiteStarted name='tst_DataTable' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='singleTestFunction1()']
|
##teamcity[testStarted name='singleTestFunction1()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='singleTestFunction1()']
|
##teamcity[testFinished name='singleTestFunction1()' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='singleTestFunction2()']
|
##teamcity[testStarted name='singleTestFunction2()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='singleTestFunction2()']
|
##teamcity[testFinished name='singleTestFunction2()' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 1)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 1)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 2)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 2)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 3)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 3)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 4)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 4)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 5)']
|
##teamcity[testStarted name='fiveTablePasses(fiveTablePasses_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 5)']
|
##teamcity[testFinished name='fiveTablePasses(fiveTablePasses_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 1)']
|
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 1)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 1)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 1)']
|
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 2)']
|
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 2)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 2)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 2)']
|
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 3)']
|
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 3)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 3)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 3)']
|
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 4)']
|
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 4)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 4)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 4)']
|
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 5)']
|
##teamcity[testStarted name='fiveTableFailures(fiveTableFailures_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 5)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveTableFailures(fiveTableFailures_data 5)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 5)']
|
##teamcity[testFinished name='fiveTableFailures(fiveTableFailures_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 1)']
|
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='startsWithFailure(startsWithFailure_data 1)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='startsWithFailure(startsWithFailure_data 1)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 1)']
|
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 2)']
|
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 2)']
|
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 3)']
|
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 3)']
|
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 4)']
|
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 4)']
|
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 5)']
|
##teamcity[testStarted name='startsWithFailure(startsWithFailure_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 5)']
|
##teamcity[testFinished name='startsWithFailure(startsWithFailure_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='endsWithFailure(endsWithFailure 1)']
|
##teamcity[testStarted name='endsWithFailure(endsWithFailure 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='endsWithFailure(endsWithFailure 1)']
|
##teamcity[testFinished name='endsWithFailure(endsWithFailure 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='endsWithFailure(endsWithFailure 2)']
|
##teamcity[testStarted name='endsWithFailure(endsWithFailure 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='endsWithFailure(endsWithFailure 2)']
|
##teamcity[testFinished name='endsWithFailure(endsWithFailure 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='endsWithFailure(endsWithFailure 3)']
|
##teamcity[testStarted name='endsWithFailure(endsWithFailure 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='endsWithFailure(endsWithFailure 3)']
|
##teamcity[testFinished name='endsWithFailure(endsWithFailure 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='endsWithFailure(endsWithFailure 4)']
|
##teamcity[testStarted name='endsWithFailure(endsWithFailure 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='endsWithFailure(endsWithFailure 4)']
|
##teamcity[testFinished name='endsWithFailure(endsWithFailure 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='endsWithFailure(endsWithFailure 5)']
|
##teamcity[testStarted name='endsWithFailure(endsWithFailure 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='endsWithFailure(endsWithFailure 5)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='endsWithFailure(endsWithFailure 5)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='endsWithFailure(endsWithFailure 5)']
|
##teamcity[testFinished name='endsWithFailure(endsWithFailure 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 1)']
|
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 1)']
|
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 2)']
|
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 2)']
|
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 3)']
|
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='failureInMiddle(failureInMiddle_data 3)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()']
|
##teamcity[testFailed name='failureInMiddle(failureInMiddle_data 3)' message='Failure! |[Loc: tst_datatable.cpp(83)|]' details='|'test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 3)']
|
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 4)']
|
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 4)']
|
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 5)']
|
##teamcity[testStarted name='failureInMiddle(failureInMiddle_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 5)']
|
##teamcity[testFinished name='failureInMiddle(failureInMiddle_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)']
|
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)']
|
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 1)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)']
|
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)']
|
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 2)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)']
|
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)']
|
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 3)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)']
|
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)']
|
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 4)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)']
|
##teamcity[testStarted name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()']
|
##teamcity[testFailed name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)' message='Failure! |[Loc: tst_datatable.cpp(165)|]' details='|'!test|' returned FALSE. ()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)']
|
##teamcity[testFinished name='fiveIsolatedFailures(fiveIsolatedFailures_data 5)' flowId='tst_DataTable']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_DataTable']
|
||||||
##teamcity[testSuiteFinished name='tst_DataTable']
|
##teamcity[testSuiteFinished name='tst_DataTable' flowId='tst_DataTable']
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_DateTime']
|
##teamcity[testSuiteStarted name='tst_DateTime' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='dateTime()']
|
##teamcity[testStarted name='dateTime()' flowId='tst_DateTime']
|
||||||
##teamcity[testFailed name='dateTime()' message='Failure! |[Loc: tst_datetime.cpp(57)|]' details='Compared values are not the same|n Actual (local): 2000/05/03 04:03:04.000|[UTC+00:02|]|n Expected (utc) : 2000/05/03 04:03:04.000|[UTC|]']
|
##teamcity[testFailed name='dateTime()' message='Failure! |[Loc: tst_datetime.cpp(57)|]' details='Compared values are not the same|n Actual (local): 2000/05/03 04:03:04.000|[UTC+00:02|]|n Expected (utc) : 2000/05/03 04:03:04.000|[UTC|]' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='dateTime()']
|
##teamcity[testFinished name='dateTime()' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='qurl(empty urls)']
|
##teamcity[testStarted name='qurl(empty urls)' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='qurl(empty urls)']
|
##teamcity[testFinished name='qurl(empty urls)' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='qurl(empty rhs)']
|
##teamcity[testStarted name='qurl(empty rhs)' flowId='tst_DateTime']
|
||||||
##teamcity[testFailed name='qurl(empty rhs)' message='Failure! |[Loc: tst_datetime.cpp(65)|]' details='Compared values are not the same|n Actual (operandA): http://example.com|n Expected (operandB): Invalid URL:']
|
##teamcity[testFailed name='qurl(empty rhs)' message='Failure! |[Loc: tst_datetime.cpp(65)|]' details='Compared values are not the same|n Actual (operandA): http://example.com|n Expected (operandB): Invalid URL:' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='qurl(empty rhs)']
|
##teamcity[testFinished name='qurl(empty rhs)' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='qurl(empty lhs)']
|
##teamcity[testStarted name='qurl(empty lhs)' flowId='tst_DateTime']
|
||||||
##teamcity[testFailed name='qurl(empty lhs)' message='Failure! |[Loc: tst_datetime.cpp(65)|]' details='Compared values are not the same|n Actual (operandA): Invalid URL: |n Expected (operandB): http://example.com']
|
##teamcity[testFailed name='qurl(empty lhs)' message='Failure! |[Loc: tst_datetime.cpp(65)|]' details='Compared values are not the same|n Actual (operandA): Invalid URL: |n Expected (operandB): http://example.com' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='qurl(empty lhs)']
|
##teamcity[testFinished name='qurl(empty lhs)' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='qurl(same urls)']
|
##teamcity[testStarted name='qurl(same urls)' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='qurl(same urls)']
|
##teamcity[testFinished name='qurl(same urls)' flowId='tst_DateTime']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_DateTime']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_DateTime']
|
||||||
##teamcity[testSuiteFinished name='tst_DateTime']
|
##teamcity[testSuiteFinished name='tst_DateTime' flowId='tst_DateTime']
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Exception']
|
##teamcity[testSuiteStarted name='tst_Exception' flowId='tst_Exception']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Exception']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Exception']
|
||||||
##teamcity[testStarted name='throwException()']
|
##teamcity[testStarted name='throwException()' flowId='tst_Exception']
|
||||||
##teamcity[testFailed name='throwException()' message='Failure! |[Loc: qtestcase.cpp(1707)|]' details='Caught unhandled exception']
|
##teamcity[testFailed name='throwException()' message='Failure! |[Loc: qtestcase.cpp(1707)|]' details='Caught unhandled exception' flowId='tst_Exception']
|
||||||
##teamcity[testFinished name='throwException()']
|
##teamcity[testFinished name='throwException()' flowId='tst_Exception']
|
||||||
##teamcity[testSuiteFinished name='tst_Exception']
|
##teamcity[testSuiteFinished name='tst_Exception' flowId='tst_Exception']
|
||||||
|
@ -1,65 +1,65 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_ExpectFail']
|
##teamcity[testSuiteStarted name='tst_ExpectFail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailAndContinue()']
|
##teamcity[testStarted name='xfailAndContinue()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailAndContinue()' out='QDEBUG: begin|nXFAIL |[Loc: tst_expectfail.cpp(70)|]: This should xfail|nQDEBUG: after']
|
##teamcity[testStdOut name='xfailAndContinue()' out='QDEBUG: begin|nXFAIL |[Loc: tst_expectfail.cpp(70)|]: This should xfail|nQDEBUG: after' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailAndContinue()']
|
##teamcity[testFinished name='xfailAndContinue()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailAndAbort()']
|
##teamcity[testStarted name='xfailAndAbort()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailAndAbort()' out='QDEBUG: begin|nXFAIL |[Loc: tst_expectfail.cpp(78)|]: This should xfail']
|
##teamcity[testStdOut name='xfailAndAbort()' out='QDEBUG: begin|nXFAIL |[Loc: tst_expectfail.cpp(78)|]: This should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailAndAbort()']
|
##teamcity[testFinished name='xfailAndAbort()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailTwice()']
|
##teamcity[testStarted name='xfailTwice()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xfailTwice()' message='Failure! |[Loc: tst_expectfail.cpp(88)|]' details='Already expecting a fail']
|
##teamcity[testFailed name='xfailTwice()' message='Failure! |[Loc: tst_expectfail.cpp(88)|]' details='Already expecting a fail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailTwice()']
|
##teamcity[testFinished name='xfailTwice()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailWithQString()']
|
##teamcity[testStarted name='xfailWithQString()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailWithQString()' out='XFAIL |[Loc: tst_expectfail.cpp(97)|]: A string|nXFAIL |[Loc: tst_expectfail.cpp(102)|]: Bug 5 (The message)']
|
##teamcity[testStdOut name='xfailWithQString()' out='XFAIL |[Loc: tst_expectfail.cpp(97)|]: A string|nXFAIL |[Loc: tst_expectfail.cpp(102)|]: Bug 5 (The message)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailWithQString()']
|
##teamcity[testFinished name='xfailWithQString()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Pass 1)']
|
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Pass 1)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Pass 1)']
|
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Pass 1)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Pass 2)']
|
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Pass 2)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Pass 2)']
|
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Pass 2)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Abort)']
|
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Abort)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailDataDrivenWithQVerify(Abort)' out='XFAIL |[Loc: tst_expectfail.cpp(131)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailDataDrivenWithQVerify(Abort)' out='XFAIL |[Loc: tst_expectfail.cpp(131)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Abort)']
|
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Abort)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Continue)']
|
##teamcity[testStarted name='xfailDataDrivenWithQVerify(Continue)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailDataDrivenWithQVerify(Continue)' out='XFAIL |[Loc: tst_expectfail.cpp(131)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailDataDrivenWithQVerify(Continue)' out='XFAIL |[Loc: tst_expectfail.cpp(131)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Continue)']
|
##teamcity[testFinished name='xfailDataDrivenWithQVerify(Continue)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Pass 1)']
|
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Pass 1)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Pass 1)']
|
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Pass 1)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Pass 2)']
|
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Pass 2)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Pass 2)']
|
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Pass 2)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Abort)']
|
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Abort)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailDataDrivenWithQCompare(Abort)' out='XFAIL |[Loc: tst_expectfail.cpp(165)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailDataDrivenWithQCompare(Abort)' out='XFAIL |[Loc: tst_expectfail.cpp(165)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Abort)']
|
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Abort)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Continue)']
|
##teamcity[testStarted name='xfailDataDrivenWithQCompare(Continue)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailDataDrivenWithQCompare(Continue)' out='XFAIL |[Loc: tst_expectfail.cpp(165)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailDataDrivenWithQCompare(Continue)' out='XFAIL |[Loc: tst_expectfail.cpp(165)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Continue)']
|
##teamcity[testFinished name='xfailDataDrivenWithQCompare(Continue)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailOnWrongRow(right row)']
|
##teamcity[testStarted name='xfailOnWrongRow(right row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailOnWrongRow(right row)']
|
##teamcity[testFinished name='xfailOnWrongRow(right row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailOnAnyRow(first row)']
|
##teamcity[testStarted name='xfailOnAnyRow(first row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailOnAnyRow(first row)' out='XFAIL |[Loc: tst_expectfail.cpp(200)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailOnAnyRow(first row)' out='XFAIL |[Loc: tst_expectfail.cpp(200)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailOnAnyRow(first row)']
|
##teamcity[testFinished name='xfailOnAnyRow(first row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailOnAnyRow(second row)']
|
##teamcity[testStarted name='xfailOnAnyRow(second row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStdOut name='xfailOnAnyRow(second row)' out='XFAIL |[Loc: tst_expectfail.cpp(200)|]: This test should xfail']
|
##teamcity[testStdOut name='xfailOnAnyRow(second row)' out='XFAIL |[Loc: tst_expectfail.cpp(200)|]: This test should xfail' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailOnAnyRow(second row)']
|
##teamcity[testFinished name='xfailOnAnyRow(second row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailWithoutVerify(first row)']
|
##teamcity[testStarted name='xfailWithoutVerify(first row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xfailWithoutVerify(first row)' message='Failure!' details='QEXPECT_FAIL was called without any subsequent verification statements']
|
##teamcity[testFailed name='xfailWithoutVerify(first row)' message='Failure!' details='QEXPECT_FAIL was called without any subsequent verification statements' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailWithoutVerify(first row)']
|
##teamcity[testFinished name='xfailWithoutVerify(first row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xfailWithoutVerify(second row)']
|
##teamcity[testStarted name='xfailWithoutVerify(second row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xfailWithoutVerify(second row)' message='Failure!' details='QEXPECT_FAIL was called without any subsequent verification statements']
|
##teamcity[testFailed name='xfailWithoutVerify(second row)' message='Failure!' details='QEXPECT_FAIL was called without any subsequent verification statements' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xfailWithoutVerify(second row)']
|
##teamcity[testFinished name='xfailWithoutVerify(second row)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xpass()']
|
##teamcity[testStarted name='xpass()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xpass()' message='Failure! |[Loc: tst_expectfail.cpp(220)|]' details='|'true|' returned TRUE unexpectedly. ()']
|
##teamcity[testFailed name='xpass()' message='Failure! |[Loc: tst_expectfail.cpp(220)|]' details='|'true|' returned TRUE unexpectedly. ()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xpass()']
|
##teamcity[testFinished name='xpass()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xpassDataDrivenWithQVerify(XPass)']
|
##teamcity[testStarted name='xpassDataDrivenWithQVerify(XPass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xpassDataDrivenWithQVerify(XPass)' message='Failure! |[Loc: tst_expectfail.cpp(242)|]' details='|'true|' returned TRUE unexpectedly. ()']
|
##teamcity[testFailed name='xpassDataDrivenWithQVerify(XPass)' message='Failure! |[Loc: tst_expectfail.cpp(242)|]' details='|'true|' returned TRUE unexpectedly. ()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xpassDataDrivenWithQVerify(XPass)']
|
##teamcity[testFinished name='xpassDataDrivenWithQVerify(XPass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xpassDataDrivenWithQVerify(Pass)']
|
##teamcity[testStarted name='xpassDataDrivenWithQVerify(Pass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xpassDataDrivenWithQVerify(Pass)']
|
##teamcity[testFinished name='xpassDataDrivenWithQVerify(Pass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xpassDataDrivenWithQCompare(XPass)']
|
##teamcity[testStarted name='xpassDataDrivenWithQCompare(XPass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFailed name='xpassDataDrivenWithQCompare(XPass)' message='Failure! |[Loc: tst_expectfail.cpp(263)|]' details='QCOMPARE(1, 1) returned TRUE unexpectedly.']
|
##teamcity[testFailed name='xpassDataDrivenWithQCompare(XPass)' message='Failure! |[Loc: tst_expectfail.cpp(263)|]' details='QCOMPARE(1, 1) returned TRUE unexpectedly.' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xpassDataDrivenWithQCompare(XPass)']
|
##teamcity[testFinished name='xpassDataDrivenWithQCompare(XPass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='xpassDataDrivenWithQCompare(Pass)']
|
##teamcity[testStarted name='xpassDataDrivenWithQCompare(Pass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='xpassDataDrivenWithQCompare(Pass)']
|
##teamcity[testFinished name='xpassDataDrivenWithQCompare(Pass)' flowId='tst_ExpectFail']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_ExpectFail']
|
||||||
##teamcity[testSuiteFinished name='tst_ExpectFail']
|
##teamcity[testSuiteFinished name='tst_ExpectFail' flowId='tst_ExpectFail']
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_FailCleanup']
|
##teamcity[testSuiteStarted name='tst_FailCleanup' flowId='tst_FailCleanup']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testStarted name='aTestFunction()']
|
##teamcity[testStarted name='aTestFunction()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testFinished name='aTestFunction()']
|
##teamcity[testFinished name='aTestFunction()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testFailed name='cleanupTestCase()' message='Failure! |[Loc: tst_failcleanup.cpp(51)|]' details='|'false|' returned FALSE. (Fail inside cleanupTestCase)']
|
##teamcity[testFailed name='cleanupTestCase()' message='Failure! |[Loc: tst_failcleanup.cpp(51)|]' details='|'false|' returned FALSE. (Fail inside cleanupTestCase)' flowId='tst_FailCleanup']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_FailCleanup']
|
||||||
##teamcity[testSuiteFinished name='tst_FailCleanup']
|
##teamcity[testSuiteFinished name='tst_FailCleanup' flowId='tst_FailCleanup']
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_FailInit']
|
##teamcity[testSuiteStarted name='tst_FailInit' flowId='tst_FailInit']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_FailInit']
|
||||||
##teamcity[testFailed name='initTestCase()' message='Failure! |[Loc: tst_failinit.cpp(47)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='initTestCase()' message='Failure! |[Loc: tst_failinit.cpp(47)|]' details='|'false|' returned FALSE. ()' flowId='tst_FailInit']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_FailInit']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_FailInit']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_FailInit']
|
||||||
##teamcity[testSuiteFinished name='tst_FailInit']
|
##teamcity[testSuiteFinished name='tst_FailInit' flowId='tst_FailInit']
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_FailInitData']
|
##teamcity[testSuiteStarted name='tst_FailInitData' flowId='tst_FailInitData']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_FailInitData']
|
||||||
##teamcity[testFailed name='initTestCase()' message='Failure! |[Loc: tst_failinitdata.cpp(48)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='initTestCase()' message='Failure! |[Loc: tst_failinitdata.cpp(48)|]' details='|'false|' returned FALSE. ()' flowId='tst_FailInitData']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_FailInitData']
|
||||||
##teamcity[testSuiteFinished name='tst_FailInitData']
|
##teamcity[testSuiteFinished name='tst_FailInitData' flowId='tst_FailInitData']
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_FetchBogus']
|
##teamcity[testSuiteStarted name='tst_FetchBogus' flowId='tst_FetchBogus']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_FetchBogus']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_FetchBogus']
|
||||||
##teamcity[testStarted name='fetchBogus(foo)']
|
##teamcity[testStarted name='fetchBogus(foo)' flowId='tst_FetchBogus']
|
||||||
##teamcity[testFailed name='fetchBogus(foo)' message='Failure! |[Loc: Unknown file(57)|]' details='Received a fatal error.']
|
##teamcity[testFailed name='fetchBogus(foo)' message='Failure! |[Loc: Unknown file(57)|]' details='Received a fatal error.' flowId='tst_FetchBogus']
|
||||||
##teamcity[testStdOut name='fetchBogus(foo)' out='QFATAL: QFETCH: Requested testdata |'bubu|' not available, check your _data function.']
|
##teamcity[testStdOut name='fetchBogus(foo)' out='QFATAL: QFETCH: Requested testdata |'bubu|' not available, check your _data function.' flowId='tst_FetchBogus']
|
||||||
##teamcity[testFinished name='fetchBogus(foo)']
|
##teamcity[testFinished name='fetchBogus(foo)' flowId='tst_FetchBogus']
|
||||||
##teamcity[testSuiteFinished name='tst_FetchBogus']
|
##teamcity[testSuiteFinished name='tst_FetchBogus' flowId='tst_FetchBogus']
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
##teamcity[testSuiteStarted name='FindTestData']
|
##teamcity[testSuiteStarted name='FindTestData' flowId='FindTestData']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='FindTestData']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='FindTestData']
|
||||||
##teamcity[testStarted name='paths()']
|
##teamcity[testStarted name='paths()' flowId='FindTestData']
|
||||||
##teamcity[testStdOut name='paths()' out='WARNING |[Loc: findtestdata.cpp(146)|]: testdata testfile could not be located!']
|
##teamcity[testStdOut name='paths()' out='WARNING |[Loc: findtestdata.cpp(146)|]: testdata testfile could not be located!' flowId='FindTestData']
|
||||||
##teamcity[testFinished name='paths()']
|
##teamcity[testFinished name='paths()' flowId='FindTestData']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='FindTestData']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='FindTestData']
|
||||||
##teamcity[testSuiteFinished name='FindTestData']
|
##teamcity[testSuiteFinished name='FindTestData' flowId='FindTestData']
|
||||||
|
@ -1,32 +1,32 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_globaldata']
|
##teamcity[testSuiteStarted name='tst_globaldata' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='initTestCase()' out='QDEBUG: initTestCase initTestCase (null)']
|
##teamcity[testStdOut name='initTestCase()' out='QDEBUG: initTestCase initTestCase (null)' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='testGlobal(local 1)']
|
##teamcity[testStarted name='testGlobal(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='testGlobal(local 1)' out='QDEBUG: init testGlobal local 1|nQDEBUG: global: false|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local 1']
|
##teamcity[testStdOut name='testGlobal(local 1)' out='QDEBUG: init testGlobal local 1|nQDEBUG: global: false|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local 1' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='testGlobal(local 1)']
|
##teamcity[testFinished name='testGlobal(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='testGlobal(local 2)']
|
##teamcity[testStarted name='testGlobal(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='testGlobal(local 2)' out='QDEBUG: init testGlobal local 2|nQDEBUG: global: false|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local 2']
|
##teamcity[testStdOut name='testGlobal(local 2)' out='QDEBUG: init testGlobal local 2|nQDEBUG: global: false|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local 2' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='testGlobal(local 2)']
|
##teamcity[testFinished name='testGlobal(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='testGlobal(local 1)']
|
##teamcity[testStarted name='testGlobal(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='testGlobal(local 1)' out='QDEBUG: init testGlobal local 1|nQDEBUG: global: true|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local 1']
|
##teamcity[testStdOut name='testGlobal(local 1)' out='QDEBUG: init testGlobal local 1|nQDEBUG: global: true|nQDEBUG: local: false|nQDEBUG: cleanup testGlobal local 1' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='testGlobal(local 1)']
|
##teamcity[testFinished name='testGlobal(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='testGlobal(local 2)']
|
##teamcity[testStarted name='testGlobal(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='testGlobal(local 2)' out='QDEBUG: init testGlobal local 2|nQDEBUG: global: true|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local 2']
|
##teamcity[testStdOut name='testGlobal(local 2)' out='QDEBUG: init testGlobal local 2|nQDEBUG: global: true|nQDEBUG: local: true|nQDEBUG: cleanup testGlobal local 2' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='testGlobal(local 2)']
|
##teamcity[testFinished name='testGlobal(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skip()' message='skipping |[Loc: tst_globaldata.cpp(121)|]']
|
##teamcity[testIgnored name='skip()' message='skipping |[Loc: tst_globaldata.cpp(121)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skipLocal(local 1)' message='skipping |[Loc: tst_globaldata.cpp(141)|]']
|
##teamcity[testIgnored name='skipLocal(local 1)' message='skipping |[Loc: tst_globaldata.cpp(141)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skipLocal(local 2)' message='skipping |[Loc: tst_globaldata.cpp(141)|]']
|
##teamcity[testIgnored name='skipLocal(local 2)' message='skipping |[Loc: tst_globaldata.cpp(141)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='skipSingle(local 1)']
|
##teamcity[testStarted name='skipSingle(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local 1)' out='QDEBUG: init skipLocal local 1|nQDEBUG: cleanup skipLocal local 1|nQDEBUG: init skipLocal local 2|nQDEBUG: cleanup skipLocal local 2|nQDEBUG: init skipSingle local 1|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local 1']
|
##teamcity[testStdOut name='skipSingle(local 1)' out='QDEBUG: init skipLocal local 1|nQDEBUG: cleanup skipLocal local 1|nQDEBUG: init skipLocal local 2|nQDEBUG: cleanup skipLocal local 2|nQDEBUG: init skipSingle local 1|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local 1' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='skipSingle(local 1)']
|
##teamcity[testFinished name='skipSingle(local 1)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='skipSingle(local 2)']
|
##teamcity[testStarted name='skipSingle(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local 2)' out='QDEBUG: init skipSingle local 2|nQDEBUG: global: false local: true|nQDEBUG: cleanup skipSingle local 2']
|
##teamcity[testStdOut name='skipSingle(local 2)' out='QDEBUG: init skipSingle local 2|nQDEBUG: global: false local: true|nQDEBUG: cleanup skipSingle local 2' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='skipSingle(local 2)']
|
##teamcity[testFinished name='skipSingle(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skipSingle(local 1)' message='skipping |[Loc: tst_globaldata.cpp(135)|]']
|
##teamcity[testIgnored name='skipSingle(local 1)' message='skipping |[Loc: tst_globaldata.cpp(135)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local 2)' out='QDEBUG: init skipSingle local 1|nQDEBUG: cleanup skipSingle local 1|nQDEBUG: init skipSingle local 2|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local 2']
|
##teamcity[testStdOut name='skipSingle(local 2)' out='QDEBUG: init skipSingle local 1|nQDEBUG: cleanup skipSingle local 1|nQDEBUG: init skipSingle local 2|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local 2' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='skipSingle(local 2)']
|
##teamcity[testFinished name='skipSingle(local 2)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanupTestCase cleanupTestCase (null)']
|
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanupTestCase cleanupTestCase (null)' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_globaldata']
|
||||||
##teamcity[testSuiteFinished name='tst_globaldata']
|
##teamcity[testSuiteFinished name='tst_globaldata' flowId='tst_globaldata']
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_LongString']
|
##teamcity[testSuiteStarted name='tst_LongString' flowId='tst_LongString']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_LongString']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_LongString']
|
||||||
##teamcity[testStarted name='failWithLongString()']
|
##teamcity[testStarted name='failWithLongString()' flowId='tst_LongString']
|
||||||
##teamcity[testFailed name='failWithLongString()' message='Failure! |[Loc: tst_longstring.cpp(59)|]' details='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui.|n|nEtiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero. Fusce vulputate eleifend sapien. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui. Cras ultricies mi eu turpis hendrerit fringilla. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia.|n|nNam pretium turpis et arcu. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Sed aliquam ultrices mauris. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Praesent adipiscing. Phasellus ullamcorper ipsum rutrum nunc. Nunc nonummy metus. Vestibulum volutpat pretium libero. Cras id dui. Aenean ut eros et nisl sagittis vestibulum. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Sed lectus. Donec mollis hendrerit risus. Phasellus nec sem in justo pellentesque facilisis. Etiam imperdiet imperdiet orci. Nunc nec neque. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi.|n|nCurabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Maecenas malesuada. Praesent congue erat at massa. Sed cursus turpis vitae tortor. Donec posuere vulputate arcu. Phasellus accumsan cursus velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci, ac placerat dolor lectus quis orci. Phasellus consectetuer vestibulum elit. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Vestibulum fringilla pede sit amet augue. In turpis. Pellentesque posuere. Praesent turpis.|n|nAenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus. Donec elit libero, sodales nec, volutpat a, suscipit non, turpis. Nullam sagittis. Suspendisse pulvinar, augue ac venenatis condimentum, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis diam. Pellentesque ut neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.']
|
##teamcity[testFailed name='failWithLongString()' message='Failure! |[Loc: tst_longstring.cpp(59)|]' details='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui.|n|nEtiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero. Fusce vulputate eleifend sapien. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui. Cras ultricies mi eu turpis hendrerit fringilla. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia.|n|nNam pretium turpis et arcu. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Sed aliquam ultrices mauris. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Praesent adipiscing. Phasellus ullamcorper ipsum rutrum nunc. Nunc nonummy metus. Vestibulum volutpat pretium libero. Cras id dui. Aenean ut eros et nisl sagittis vestibulum. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Sed lectus. Donec mollis hendrerit risus. Phasellus nec sem in justo pellentesque facilisis. Etiam imperdiet imperdiet orci. Nunc nec neque. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi.|n|nCurabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Maecenas malesuada. Praesent congue erat at massa. Sed cursus turpis vitae tortor. Donec posuere vulputate arcu. Phasellus accumsan cursus velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci, ac placerat dolor lectus quis orci. Phasellus consectetuer vestibulum elit. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Vestibulum fringilla pede sit amet augue. In turpis. Pellentesque posuere. Praesent turpis.|n|nAenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus. Donec elit libero, sodales nec, volutpat a, suscipit non, turpis. Nullam sagittis. Suspendisse pulvinar, augue ac venenatis condimentum, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis diam. Pellentesque ut neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.' flowId='tst_LongString']
|
||||||
##teamcity[testFinished name='failWithLongString()']
|
##teamcity[testFinished name='failWithLongString()' flowId='tst_LongString']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_LongString']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_LongString']
|
||||||
##teamcity[testSuiteFinished name='tst_LongString']
|
##teamcity[testSuiteFinished name='tst_LongString' flowId='tst_LongString']
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,12 +1,12 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Silent']
|
##teamcity[testSuiteStarted name='tst_Silent' flowId='tst_Silent']
|
||||||
##teamcity[testStarted name='fail()']
|
##teamcity[testStarted name='fail()' flowId='tst_Silent']
|
||||||
##teamcity[testFailed name='fail()' message='Failure! |[Loc: tst_silent.cpp(65)|]' details='|'false|' returned FALSE. (This test should fail)']
|
##teamcity[testFailed name='fail()' message='Failure! |[Loc: tst_silent.cpp(65)|]' details='|'false|' returned FALSE. (This test should fail)' flowId='tst_Silent']
|
||||||
##teamcity[testFinished name='fail()']
|
##teamcity[testFinished name='fail()' flowId='tst_Silent']
|
||||||
##teamcity[testStarted name='xpass()']
|
##teamcity[testStarted name='xpass()' flowId='tst_Silent']
|
||||||
##teamcity[testFailed name='xpass()' message='Failure! |[Loc: tst_silent.cpp(77)|]' details='|'true|' returned TRUE unexpectedly. (This test should XPASS)']
|
##teamcity[testFailed name='xpass()' message='Failure! |[Loc: tst_silent.cpp(77)|]' details='|'true|' returned TRUE unexpectedly. (This test should XPASS)' flowId='tst_Silent']
|
||||||
##teamcity[testFinished name='xpass()']
|
##teamcity[testFinished name='xpass()' flowId='tst_Silent']
|
||||||
##teamcity[testStarted name='messages()']
|
##teamcity[testStarted name='messages()' flowId='tst_Silent']
|
||||||
##teamcity[testFailed name='messages()' message='Failure! |[Loc: unknown file(0)|]' details='Received a fatal error.']
|
##teamcity[testFailed name='messages()' message='Failure! |[Loc: unknown file(0)|]' details='Received a fatal error.' flowId='tst_Silent']
|
||||||
##teamcity[testStdOut name='messages()' out='QFATAL: This is a fatal error message that should still appear in silent test output']
|
##teamcity[testStdOut name='messages()' out='QFATAL: This is a fatal error message that should still appear in silent test output' flowId='tst_Silent']
|
||||||
##teamcity[testFinished name='messages()']
|
##teamcity[testFinished name='messages()' flowId='tst_Silent']
|
||||||
##teamcity[testSuiteFinished name='tst_Silent']
|
##teamcity[testSuiteFinished name='tst_Silent' flowId='tst_Silent']
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_SingleSkip']
|
##teamcity[testSuiteStarted name='tst_SingleSkip' flowId='tst_SingleSkip']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_SingleSkip']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_SingleSkip']
|
||||||
##teamcity[testIgnored name='myTest()' message='skipping test |[Loc: tst_singleskip.cpp(48)|]']
|
##teamcity[testIgnored name='myTest()' message='skipping test |[Loc: tst_singleskip.cpp(48)|]' flowId='tst_SingleSkip']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_SingleSkip']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_SingleSkip']
|
||||||
##teamcity[testSuiteFinished name='tst_SingleSkip']
|
##teamcity[testSuiteFinished name='tst_SingleSkip' flowId='tst_SingleSkip']
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Skip']
|
##teamcity[testSuiteStarted name='tst_Skip' flowId='tst_Skip']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Skip']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Skip']
|
||||||
##teamcity[testIgnored name='test()' message='skipping all |[Loc: tst_skip.cpp(60)|]']
|
##teamcity[testIgnored name='test()' message='skipping all |[Loc: tst_skip.cpp(60)|]' flowId='tst_Skip']
|
||||||
##teamcity[testIgnored name='emptytest()' message='skipping all |[Loc: tst_skip.cpp(70)|]']
|
##teamcity[testIgnored name='emptytest()' message='skipping all |[Loc: tst_skip.cpp(70)|]' flowId='tst_Skip']
|
||||||
##teamcity[testIgnored name='singleSkip(local 1)' message='skipping one |[Loc: tst_skip.cpp(89)|]']
|
##teamcity[testIgnored name='singleSkip(local 1)' message='skipping one |[Loc: tst_skip.cpp(89)|]' flowId='tst_Skip']
|
||||||
##teamcity[testStarted name='singleSkip(local 2)']
|
##teamcity[testStarted name='singleSkip(local 2)' flowId='tst_Skip']
|
||||||
##teamcity[testStdOut name='singleSkip(local 2)' out='QDEBUG: this line should only be reached once (true)']
|
##teamcity[testStdOut name='singleSkip(local 2)' out='QDEBUG: this line should only be reached once (true)' flowId='tst_Skip']
|
||||||
##teamcity[testFinished name='singleSkip(local 2)']
|
##teamcity[testFinished name='singleSkip(local 2)' flowId='tst_Skip']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Skip']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Skip']
|
||||||
##teamcity[testSuiteFinished name='tst_Skip']
|
##teamcity[testSuiteFinished name='tst_Skip' flowId='tst_Skip']
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_SkipCleanup']
|
##teamcity[testSuiteStarted name='tst_SkipCleanup' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testStarted name='aTestFunction()']
|
##teamcity[testStarted name='aTestFunction()' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testFinished name='aTestFunction()']
|
##teamcity[testFinished name='aTestFunction()' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testIgnored name='cleanupTestCase()' message='Skip inside cleanupTestCase. |[Loc: tst_skipcleanup.cpp(51)|]']
|
##teamcity[testIgnored name='cleanupTestCase()' message='Skip inside cleanupTestCase. |[Loc: tst_skipcleanup.cpp(51)|]' flowId='tst_SkipCleanup']
|
||||||
##teamcity[testSuiteFinished name='tst_SkipCleanup']
|
##teamcity[testSuiteFinished name='tst_SkipCleanup' flowId='tst_SkipCleanup']
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_SkipInit']
|
##teamcity[testSuiteStarted name='tst_SkipInit' flowId='tst_SkipInit']
|
||||||
##teamcity[testIgnored name='initTestCase()' message='Skip inside initTestCase. This should skip all tests in the class. |[Loc: tst_skipinit.cpp(47)|]']
|
##teamcity[testIgnored name='initTestCase()' message='Skip inside initTestCase. This should skip all tests in the class. |[Loc: tst_skipinit.cpp(47)|]' flowId='tst_SkipInit']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_SkipInit']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_SkipInit']
|
||||||
##teamcity[testSuiteFinished name='tst_SkipInit']
|
##teamcity[testSuiteFinished name='tst_SkipInit' flowId='tst_SkipInit']
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_SkipInitData']
|
##teamcity[testSuiteStarted name='tst_SkipInitData' flowId='tst_SkipInitData']
|
||||||
##teamcity[testIgnored name='initTestCase()' message='Skip inside initTestCase_data. This should skip all tests in the class. |[Loc: tst_skipinitdata.cpp(48)|]']
|
##teamcity[testIgnored name='initTestCase()' message='Skip inside initTestCase_data. This should skip all tests in the class. |[Loc: tst_skipinitdata.cpp(48)|]' flowId='tst_SkipInitData']
|
||||||
##teamcity[testSuiteFinished name='tst_SkipInitData']
|
##teamcity[testSuiteFinished name='tst_SkipInitData' flowId='tst_SkipInitData']
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Sleep']
|
##teamcity[testSuiteStarted name='tst_Sleep' flowId='tst_Sleep']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Sleep']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Sleep']
|
||||||
##teamcity[testStarted name='sleep()']
|
##teamcity[testStarted name='sleep()' flowId='tst_Sleep']
|
||||||
##teamcity[testFinished name='sleep()']
|
##teamcity[testFinished name='sleep()' flowId='tst_Sleep']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Sleep']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Sleep']
|
||||||
##teamcity[testSuiteFinished name='tst_Sleep']
|
##teamcity[testSuiteFinished name='tst_Sleep' flowId='tst_Sleep']
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_StrCmp']
|
##teamcity[testSuiteStarted name='tst_StrCmp' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='compareCharStars()']
|
##teamcity[testStarted name='compareCharStars()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='compareCharStars()']
|
##teamcity[testFinished name='compareCharStars()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='compareByteArray()']
|
##teamcity[testStarted name='compareByteArray()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFailed name='compareByteArray()' message='Failure! |[Loc: tst_strcmp.cpp(101)|]' details='Compared values are not the same|n Actual (a): "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"...|n Expected (b): "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"...']
|
##teamcity[testFailed name='compareByteArray()' message='Failure! |[Loc: tst_strcmp.cpp(101)|]' details='Compared values are not the same|n Actual (a): "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"...|n Expected (b): "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"...' flowId='tst_StrCmp']
|
||||||
##teamcity[testStdOut name='compareByteArray()' out='XFAIL |[Loc: tst_strcmp.cpp(80)|]: Next test should fail|nXFAIL |[Loc: tst_strcmp.cpp(87)|]: Next test should fail|nXFAIL |[Loc: tst_strcmp.cpp(94)|]: Next test should fail']
|
##teamcity[testStdOut name='compareByteArray()' out='XFAIL |[Loc: tst_strcmp.cpp(80)|]: Next test should fail|nXFAIL |[Loc: tst_strcmp.cpp(87)|]: Next test should fail|nXFAIL |[Loc: tst_strcmp.cpp(94)|]: Next test should fail' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='compareByteArray()']
|
##teamcity[testFinished name='compareByteArray()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='failByteArray()']
|
##teamcity[testStarted name='failByteArray()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFailed name='failByteArray()' message='Failure! |[Loc: tst_strcmp.cpp(107)|]' details='Compared values are not the same|n Actual (QByteArray("abc")): "abc"|n Expected (QByteArray("cba")): "cba"']
|
##teamcity[testFailed name='failByteArray()' message='Failure! |[Loc: tst_strcmp.cpp(107)|]' details='Compared values are not the same|n Actual (QByteArray("abc")): "abc"|n Expected (QByteArray("cba")): "cba"' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='failByteArray()']
|
##teamcity[testFinished name='failByteArray()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='failByteArrayNull()']
|
##teamcity[testStarted name='failByteArrayNull()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFailed name='failByteArrayNull()' message='Failure! |[Loc: tst_strcmp.cpp(113)|]' details='Compared values are not the same|n Actual (QByteArray("foo")): "foo"|n Expected (QByteArray()) : ""']
|
##teamcity[testFailed name='failByteArrayNull()' message='Failure! |[Loc: tst_strcmp.cpp(113)|]' details='Compared values are not the same|n Actual (QByteArray("foo")): "foo"|n Expected (QByteArray()) : ""' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='failByteArrayNull()']
|
##teamcity[testFinished name='failByteArrayNull()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='failByteArrayEmpty()']
|
##teamcity[testStarted name='failByteArrayEmpty()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFailed name='failByteArrayEmpty()' message='Failure! |[Loc: tst_strcmp.cpp(118)|]' details='Compared values are not the same|n Actual (QByteArray("")) : ""|n Expected (QByteArray("foo")): "foo"']
|
##teamcity[testFailed name='failByteArrayEmpty()' message='Failure! |[Loc: tst_strcmp.cpp(118)|]' details='Compared values are not the same|n Actual (QByteArray("")) : ""|n Expected (QByteArray("foo")): "foo"' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='failByteArrayEmpty()']
|
##teamcity[testFinished name='failByteArrayEmpty()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='failByteArraySingleChars()']
|
##teamcity[testStarted name='failByteArraySingleChars()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFailed name='failByteArraySingleChars()' message='Failure! |[Loc: tst_strcmp.cpp(125)|]' details='Compared values are not the same|n Actual (QByteArray("6")): "6"|n Expected (QByteArray("7")): "7"']
|
##teamcity[testFailed name='failByteArraySingleChars()' message='Failure! |[Loc: tst_strcmp.cpp(125)|]' details='Compared values are not the same|n Actual (QByteArray("6")): "6"|n Expected (QByteArray("7")): "7"' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='failByteArraySingleChars()']
|
##teamcity[testFinished name='failByteArraySingleChars()' flowId='tst_StrCmp']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_StrCmp']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_StrCmp']
|
||||||
##teamcity[testSuiteFinished name='tst_StrCmp']
|
##teamcity[testSuiteFinished name='tst_StrCmp' flowId='tst_StrCmp']
|
||||||
|
@ -1,31 +1,31 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Subtest']
|
##teamcity[testSuiteStarted name='tst_Subtest' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='initTestCase()' out='QDEBUG: initTestCase initTestCase (null)']
|
##teamcity[testStdOut name='initTestCase()' out='QDEBUG: initTestCase initTestCase (null)' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test1()']
|
##teamcity[testStarted name='test1()' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test1()' out='QDEBUG: init test1 (null)|nQDEBUG: test1 test1 (null)|nQDEBUG: cleanup test1 (null)']
|
##teamcity[testStdOut name='test1()' out='QDEBUG: init test1 (null)|nQDEBUG: test1 test1 (null)|nQDEBUG: cleanup test1 (null)' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test1()']
|
##teamcity[testFinished name='test1()' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test2(data0)']
|
##teamcity[testStarted name='test2(data0)' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test2(data0)' out='QDEBUG: test2_data test2 (null)|nQDEBUG: test2_data end|nQDEBUG: init test2 data0|nQDEBUG: test2 test2 data0|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data0']
|
##teamcity[testStdOut name='test2(data0)' out='QDEBUG: test2_data test2 (null)|nQDEBUG: test2_data end|nQDEBUG: init test2 data0|nQDEBUG: test2 test2 data0|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data0' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test2(data0)']
|
##teamcity[testFinished name='test2(data0)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test2(data1)']
|
##teamcity[testStarted name='test2(data1)' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test2(data1)' out='QDEBUG: init test2 data1|nQDEBUG: test2 test2 data1|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data1']
|
##teamcity[testStdOut name='test2(data1)' out='QDEBUG: init test2 data1|nQDEBUG: test2 test2 data1|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data1' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test2(data1)']
|
##teamcity[testFinished name='test2(data1)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test2(data2)']
|
##teamcity[testStarted name='test2(data2)' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test2(data2)' out='QDEBUG: init test2 data2|nQDEBUG: test2 test2 data2|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data2']
|
##teamcity[testStdOut name='test2(data2)' out='QDEBUG: init test2 data2|nQDEBUG: test2 test2 data2|nQDEBUG: test2 end|nQDEBUG: cleanup test2 data2' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test2(data2)']
|
##teamcity[testFinished name='test2(data2)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test3(data0)']
|
##teamcity[testStarted name='test3(data0)' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test3(data0)' out='QDEBUG: test3_data test3 (null)|nQDEBUG: test3_data end|nQDEBUG: init test3 data0|nQDEBUG: test2 test3 data0|nQDEBUG: test2 end|nQDEBUG: cleanup test3 data0']
|
##teamcity[testStdOut name='test3(data0)' out='QDEBUG: test3_data test3 (null)|nQDEBUG: test3_data end|nQDEBUG: init test3 data0|nQDEBUG: test2 test3 data0|nQDEBUG: test2 end|nQDEBUG: cleanup test3 data0' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test3(data0)']
|
##teamcity[testFinished name='test3(data0)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test3(data1)']
|
##teamcity[testStarted name='test3(data1)' flowId='tst_Subtest']
|
||||||
##teamcity[testFailed name='test3(data1)' message='Failure! |[Loc: tst_subtest.cpp(146)|]' details='Compared values are not the same|n Actual (str) : "hello1"|n Expected (QString("hello0")): "hello0"']
|
##teamcity[testFailed name='test3(data1)' message='Failure! |[Loc: tst_subtest.cpp(146)|]' details='Compared values are not the same|n Actual (str) : "hello1"|n Expected (QString("hello0")): "hello0"' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test3(data1)' out='QDEBUG: init test3 data1|nQDEBUG: test2 test3 data1']
|
##teamcity[testStdOut name='test3(data1)' out='QDEBUG: init test3 data1|nQDEBUG: test2 test3 data1' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test3(data1)']
|
##teamcity[testFinished name='test3(data1)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='test3(data2)']
|
##teamcity[testStarted name='test3(data2)' flowId='tst_Subtest']
|
||||||
##teamcity[testFailed name='test3(data2)' message='Failure! |[Loc: tst_subtest.cpp(146)|]' details='Compared values are not the same|n Actual (str) : "hello2"|n Expected (QString("hello0")): "hello0"']
|
##teamcity[testFailed name='test3(data2)' message='Failure! |[Loc: tst_subtest.cpp(146)|]' details='Compared values are not the same|n Actual (str) : "hello2"|n Expected (QString("hello0")): "hello0"' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='test3(data2)' out='QDEBUG: cleanup test3 data1|nQDEBUG: init test3 data2|nQDEBUG: test2 test3 data2']
|
##teamcity[testStdOut name='test3(data2)' out='QDEBUG: cleanup test3 data1|nQDEBUG: init test3 data2|nQDEBUG: test2 test3 data2' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='test3(data2)']
|
##teamcity[testFinished name='test3(data2)' flowId='tst_Subtest']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Subtest']
|
||||||
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanup test3 data2|nQDEBUG: cleanupTestCase cleanupTestCase (null)']
|
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanup test3 data2|nQDEBUG: cleanupTestCase cleanupTestCase (null)' flowId='tst_Subtest']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Subtest']
|
||||||
##teamcity[testSuiteFinished name='tst_Subtest']
|
##teamcity[testSuiteFinished name='tst_Subtest' flowId='tst_Subtest']
|
||||||
|
@ -1,68 +1,68 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Counting']
|
##teamcity[testSuiteStarted name='tst_Counting' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 1)']
|
##teamcity[testStarted name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 1)']
|
##teamcity[testFinished name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 2)']
|
##teamcity[testStarted name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 2)']
|
##teamcity[testFinished name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassSkip(row 1)']
|
##teamcity[testStarted name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassSkip(row 1)']
|
##teamcity[testFinished name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 1)']
|
##teamcity[testStarted name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 1)']
|
##teamcity[testFinished name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 2)']
|
##teamcity[testStarted name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 2)']
|
##teamcity[testFinished name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipPass(row 2)']
|
##teamcity[testStarted name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipPass(row 2)']
|
##teamcity[testFinished name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipFail(row 2)']
|
##teamcity[testStarted name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipFail(row 2)']
|
##teamcity[testFinished name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 1)']
|
##teamcity[testStarted name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 1)']
|
##teamcity[testFinished name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 2)']
|
##teamcity[testStarted name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 2)']
|
##teamcity[testFinished name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailSkip(row 1)']
|
##teamcity[testStarted name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailSkip(row 1)']
|
##teamcity[testFinished name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 1)']
|
##teamcity[testStarted name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 1)']
|
##teamcity[testFinished name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 2)']
|
##teamcity[testStarted name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 2)']
|
##teamcity[testFinished name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(before)']
|
##teamcity[testStarted name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(before)']
|
##teamcity[testFinished name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(fail)']
|
##teamcity[testStarted name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(226)|]' details='Fail in init()']
|
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(226)|]' details='Fail in init()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(fail)']
|
##teamcity[testFinished name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(after)']
|
##teamcity[testStarted name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(after)']
|
##teamcity[testFinished name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(before)']
|
##teamcity[testStarted name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(before)']
|
##teamcity[testFinished name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(fail)']
|
##teamcity[testStarted name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(234)|]' details='Fail in cleanup()']
|
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(234)|]' details='Fail in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()']
|
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(fail)']
|
##teamcity[testFinished name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(after)']
|
##teamcity[testStarted name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(after)']
|
##teamcity[testFinished name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(before)']
|
##teamcity[testStarted name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(before)']
|
##teamcity[testFinished name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: ../counting/tst_counting.cpp(228)|]']
|
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: ../counting/tst_counting.cpp(228)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(after)']
|
##teamcity[testStarted name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(after)']
|
##teamcity[testFinished name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(before)']
|
##teamcity[testStarted name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(before)']
|
##teamcity[testFinished name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: ../counting/tst_counting.cpp(236)|]']
|
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: ../counting/tst_counting.cpp(236)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(after)']
|
##teamcity[testStarted name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()']
|
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(after)']
|
##teamcity[testFinished name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testSuiteFinished name='tst_Counting']
|
##teamcity[testSuiteFinished name='tst_Counting' flowId='tst_Counting']
|
||||||
|
@ -1,80 +1,80 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Counting']
|
##teamcity[testSuiteStarted name='tst_Counting' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 1)']
|
##teamcity[testStarted name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testPassPass(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testPassPass(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 1)']
|
##teamcity[testFinished name='testPassPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassPass(row 2)']
|
##teamcity[testStarted name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testPassPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testPassPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassPass(row 2)']
|
##teamcity[testFinished name='testPassPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassSkip(row 1)']
|
##teamcity[testStarted name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testPassSkip(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testPassSkip(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassSkip(row 1)']
|
##teamcity[testFinished name='testPassSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testPassSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 1)']
|
##teamcity[testStarted name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testPassFail(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testPassFail(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 1)']
|
##teamcity[testFinished name='testPassFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testPassFail(row 2)']
|
##teamcity[testStarted name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testPassFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testPassFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testPassFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testPassFail(row 2)']
|
##teamcity[testFinished name='testPassFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipPass(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipPass(row 2)']
|
##teamcity[testStarted name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testSkipPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testSkipPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipPass(row 2)']
|
##teamcity[testFinished name='testSkipPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testSkipFail(row 1)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipFail(row 2)']
|
##teamcity[testStarted name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testSkipFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testSkipFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testSkipFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipFail(row 2)']
|
##teamcity[testFinished name='testSkipFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 1)']
|
##teamcity[testStarted name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailPass(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailPass(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testFailPass(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 1)']
|
##teamcity[testFinished name='testFailPass(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailPass(row 2)']
|
##teamcity[testStarted name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)']
|
##teamcity[testStdOut name='testFailPass(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(103)|]: QVERIFY(true)|nINFO |[Loc: ../counting/tst_counting.cpp(104)|]: QCOMPARE(2 + 1, 3)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailPass(row 2)']
|
##teamcity[testFinished name='testFailPass(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailSkip(row 1)']
|
##teamcity[testStarted name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailSkip(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailSkip(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testFailSkip(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailSkip(row 1)']
|
##teamcity[testFinished name='testFailSkip(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]']
|
##teamcity[testIgnored name='testFailSkip(row 2)' message='Skipping |[Loc: ../counting/tst_counting.cpp(110)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 1)']
|
##teamcity[testStarted name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 1)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailFail(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testFailFail(row 1)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 1)']
|
##teamcity[testFinished name='testFailFail(row 1)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailFail(row 2)']
|
##teamcity[testStarted name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()']
|
##teamcity[testFailed name='testFailFail(row 2)' message='Failure! |[Loc: ../counting/tst_counting.cpp(107)|]' details='|'false|' returned FALSE. ()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)']
|
##teamcity[testStdOut name='testFailFail(row 2)' out='INFO |[Loc: ../counting/tst_counting.cpp(107)|]: QVERIFY(false)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailFail(row 2)']
|
##teamcity[testFinished name='testFailFail(row 2)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(before)']
|
##teamcity[testStarted name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(before)']
|
##teamcity[testFinished name='testFailInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(fail)']
|
##teamcity[testStarted name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(226)|]' details='Fail in init()']
|
##teamcity[testFailed name='testFailInInit(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(226)|]' details='Fail in init()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(fail)']
|
##teamcity[testFinished name='testFailInInit(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInInit(after)']
|
##teamcity[testStarted name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInInit(after)']
|
##teamcity[testFinished name='testFailInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(before)']
|
##teamcity[testStarted name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(before)']
|
##teamcity[testFinished name='testFailInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(fail)']
|
##teamcity[testStarted name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(234)|]' details='Fail in cleanup()']
|
##teamcity[testFailed name='testFailInCleanup(fail)' message='Failure! |[Loc: ../counting/tst_counting.cpp(234)|]' details='Fail in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()']
|
##teamcity[testStdOut name='testFailInCleanup(fail)' out='QDEBUG: This test function should execute and then QFAIL in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(fail)']
|
##teamcity[testFinished name='testFailInCleanup(fail)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testFailInCleanup(after)']
|
##teamcity[testStarted name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testFailInCleanup(after)']
|
##teamcity[testFinished name='testFailInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(before)']
|
##teamcity[testStarted name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(before)']
|
##teamcity[testFinished name='testSkipInInit(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: ../counting/tst_counting.cpp(228)|]']
|
##teamcity[testIgnored name='testSkipInInit(skip)' message='Skip in init() |[Loc: ../counting/tst_counting.cpp(228)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInInit(after)']
|
##teamcity[testStarted name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInInit(after)']
|
##teamcity[testFinished name='testSkipInInit(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(before)']
|
##teamcity[testStarted name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(before)']
|
##teamcity[testFinished name='testSkipInCleanup(before)' flowId='tst_Counting']
|
||||||
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: ../counting/tst_counting.cpp(236)|]']
|
##teamcity[testIgnored name='testSkipInCleanup(skip)' message='Skip in cleanup() |[Loc: ../counting/tst_counting.cpp(236)|]' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='testSkipInCleanup(after)']
|
##teamcity[testStarted name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()']
|
##teamcity[testStdOut name='testSkipInCleanup(after)' out='QDEBUG: This test function should execute and then QSKIP in cleanup()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='testSkipInCleanup(after)']
|
##teamcity[testFinished name='testSkipInCleanup(after)' flowId='tst_Counting']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Counting']
|
||||||
##teamcity[testSuiteFinished name='tst_Counting']
|
##teamcity[testSuiteFinished name='tst_Counting' flowId='tst_Counting']
|
||||||
|
@ -1,30 +1,30 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_VerifyExceptionThrown']
|
##teamcity[testSuiteStarted name='tst_VerifyExceptionThrown' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testCorrectStdTypes()']
|
##teamcity[testStarted name='testCorrectStdTypes()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testCorrectStdTypes()']
|
##teamcity[testFinished name='testCorrectStdTypes()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testCorrectStdExceptions()']
|
##teamcity[testStarted name='testCorrectStdExceptions()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testCorrectStdExceptions()']
|
##teamcity[testFinished name='testCorrectStdExceptions()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testCorrectMyExceptions()']
|
##teamcity[testStarted name='testCorrectMyExceptions()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testCorrectMyExceptions()']
|
##teamcity[testFinished name='testCorrectMyExceptions()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailInt()']
|
##teamcity[testStarted name='testFailInt()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailInt()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(120)|]' details='Expected exception of type double to be thrown but unknown exception caught']
|
##teamcity[testFailed name='testFailInt()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(120)|]' details='Expected exception of type double to be thrown but unknown exception caught' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailInt()']
|
##teamcity[testFinished name='testFailInt()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailStdString()']
|
##teamcity[testStarted name='testFailStdString()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailStdString()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(125)|]' details='Expected exception of type char* to be thrown but unknown exception caught']
|
##teamcity[testFailed name='testFailStdString()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(125)|]' details='Expected exception of type char* to be thrown but unknown exception caught' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailStdString()']
|
##teamcity[testFinished name='testFailStdString()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailStdRuntimeError()']
|
##teamcity[testStarted name='testFailStdRuntimeError()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailStdRuntimeError()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(130)|]' details='Expected exception of type std::runtime_error to be thrown but std::exception caught with message: logic error']
|
##teamcity[testFailed name='testFailStdRuntimeError()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(130)|]' details='Expected exception of type std::runtime_error to be thrown but std::exception caught with message: logic error' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailStdRuntimeError()']
|
##teamcity[testFinished name='testFailStdRuntimeError()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailMyException()']
|
##teamcity[testStarted name='testFailMyException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailMyException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(135)|]' details='Expected exception of type MyBaseException to be thrown but std::exception caught with message: logic error']
|
##teamcity[testFailed name='testFailMyException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(135)|]' details='Expected exception of type MyBaseException to be thrown but std::exception caught with message: logic error' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailMyException()']
|
##teamcity[testFinished name='testFailMyException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailMyDerivedException()']
|
##teamcity[testStarted name='testFailMyDerivedException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailMyDerivedException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(140)|]' details='Expected exception of type std::runtime_error to be thrown but std::exception caught with message: MyDerivedException']
|
##teamcity[testFailed name='testFailMyDerivedException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(140)|]' details='Expected exception of type std::runtime_error to be thrown but std::exception caught with message: MyDerivedException' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailMyDerivedException()']
|
##teamcity[testFinished name='testFailMyDerivedException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='testFailNoException()']
|
##teamcity[testStarted name='testFailNoException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFailed name='testFailNoException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(145)|]' details='Expected exception of type std::exception to be thrown but no exception caught']
|
##teamcity[testFailed name='testFailNoException()' message='Failure! |[Loc: tst_verifyexceptionthrown.cpp(145)|]' details='Expected exception of type std::exception to be thrown but no exception caught' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='testFailNoException()']
|
##teamcity[testFinished name='testFailNoException()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_VerifyExceptionThrown']
|
||||||
##teamcity[testSuiteFinished name='tst_VerifyExceptionThrown']
|
##teamcity[testSuiteFinished name='tst_VerifyExceptionThrown' flowId='tst_VerifyExceptionThrown']
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Warnings']
|
##teamcity[testSuiteStarted name='tst_Warnings' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='testWarnings()']
|
##teamcity[testStarted name='testWarnings()' flowId='tst_Warnings']
|
||||||
##teamcity[testStdOut name='testWarnings()' out='QWARN: Warning|nQWARN: Warning|nQDEBUG: Debug|nQDEBUG: Debug|nQINFO: Info|nQINFO: Info|nQDEBUG: Baba|nQDEBUG: Baba|nQDEBUG: Bubublabla|nQWARN: Babablabla']
|
##teamcity[testStdOut name='testWarnings()' out='QWARN: Warning|nQWARN: Warning|nQDEBUG: Debug|nQDEBUG: Debug|nQINFO: Info|nQINFO: Info|nQDEBUG: Baba|nQDEBUG: Baba|nQDEBUG: Bubublabla|nQWARN: Babablabla' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='testWarnings()']
|
##teamcity[testFinished name='testWarnings()' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='testMissingWarnings()']
|
##teamcity[testStarted name='testMissingWarnings()' flowId='tst_Warnings']
|
||||||
##teamcity[testFailed name='testMissingWarnings()' message='Failure!' details='Not all expected messages were received']
|
##teamcity[testFailed name='testMissingWarnings()' message='Failure!' details='Not all expected messages were received' flowId='tst_Warnings']
|
||||||
##teamcity[testStdOut name='testMissingWarnings()' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"']
|
##teamcity[testStdOut name='testMissingWarnings()' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='testMissingWarnings()']
|
##teamcity[testFinished name='testMissingWarnings()' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='testMissingWarningsRegularExpression()']
|
##teamcity[testStarted name='testMissingWarningsRegularExpression()' flowId='tst_Warnings']
|
||||||
##teamcity[testFailed name='testMissingWarningsRegularExpression()' message='Failure!' details='Not all expected messages were received']
|
##teamcity[testFailed name='testMissingWarningsRegularExpression()' message='Failure!' details='Not all expected messages were received' flowId='tst_Warnings']
|
||||||
##teamcity[testStdOut name='testMissingWarningsRegularExpression()' out='INFO: Did not receive any message matching: "Warning\s\d"']
|
##teamcity[testStdOut name='testMissingWarningsRegularExpression()' out='INFO: Did not receive any message matching: "Warning\s\d"' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='testMissingWarningsRegularExpression()']
|
##teamcity[testFinished name='testMissingWarningsRegularExpression()' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='testMissingWarningsWithData(first row)']
|
##teamcity[testStarted name='testMissingWarningsWithData(first row)' flowId='tst_Warnings']
|
||||||
##teamcity[testFailed name='testMissingWarningsWithData(first row)' message='Failure!' details='Not all expected messages were received']
|
##teamcity[testFailed name='testMissingWarningsWithData(first row)' message='Failure!' details='Not all expected messages were received' flowId='tst_Warnings']
|
||||||
##teamcity[testStdOut name='testMissingWarningsWithData(first row)' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"']
|
##teamcity[testStdOut name='testMissingWarningsWithData(first row)' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='testMissingWarningsWithData(first row)']
|
##teamcity[testFinished name='testMissingWarningsWithData(first row)' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='testMissingWarningsWithData(second row)']
|
##teamcity[testStarted name='testMissingWarningsWithData(second row)' flowId='tst_Warnings']
|
||||||
##teamcity[testFailed name='testMissingWarningsWithData(second row)' message='Failure!' details='Not all expected messages were received']
|
##teamcity[testFailed name='testMissingWarningsWithData(second row)' message='Failure!' details='Not all expected messages were received' flowId='tst_Warnings']
|
||||||
##teamcity[testStdOut name='testMissingWarningsWithData(second row)' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"']
|
##teamcity[testStdOut name='testMissingWarningsWithData(second row)' out='INFO: Did not receive message: "Warning0"|nINFO: Did not receive message: "Warning1"' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='testMissingWarningsWithData(second row)']
|
##teamcity[testFinished name='testMissingWarningsWithData(second row)' flowId='tst_Warnings']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Warnings']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Warnings']
|
||||||
##teamcity[testSuiteFinished name='tst_Warnings']
|
##teamcity[testSuiteFinished name='tst_Warnings' flowId='tst_Warnings']
|
||||||
|
@ -1,26 +1,26 @@
|
|||||||
##teamcity[testSuiteStarted name='tst_Xunit']
|
##teamcity[testSuiteStarted name='tst_Xunit' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='initTestCase()']
|
##teamcity[testStarted name='initTestCase()' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='initTestCase()']
|
##teamcity[testFinished name='initTestCase()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc1()']
|
##teamcity[testStarted name='testFunc1()' flowId='tst_Xunit']
|
||||||
##teamcity[testStdOut name='testFunc1()' out='WARNING |[Loc: tst_xunit.cpp(59)|]: just a QWARN() !']
|
##teamcity[testStdOut name='testFunc1()' out='WARNING |[Loc: tst_xunit.cpp(59)|]: just a QWARN() !' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc1()']
|
##teamcity[testFinished name='testFunc1()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc2()']
|
##teamcity[testStarted name='testFunc2()' flowId='tst_Xunit']
|
||||||
##teamcity[testFailed name='testFunc2()' message='Failure! |[Loc: tst_xunit.cpp(66)|]' details='Compared values are not the same|n Actual (2): 2|n Expected (3): 3']
|
##teamcity[testFailed name='testFunc2()' message='Failure! |[Loc: tst_xunit.cpp(66)|]' details='Compared values are not the same|n Actual (2): 2|n Expected (3): 3' flowId='tst_Xunit']
|
||||||
##teamcity[testStdOut name='testFunc2()' out='QDEBUG: a qDebug() call with comment-ending stuff -->']
|
##teamcity[testStdOut name='testFunc2()' out='QDEBUG: a qDebug() call with comment-ending stuff -->' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc2()']
|
##teamcity[testFinished name='testFunc2()' flowId='tst_Xunit']
|
||||||
##teamcity[testIgnored name='testFunc3()' message='skipping this function! |[Loc: tst_xunit.cpp(71)|]']
|
##teamcity[testIgnored name='testFunc3()' message='skipping this function! |[Loc: tst_xunit.cpp(71)|]' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc4()']
|
##teamcity[testStarted name='testFunc4()' flowId='tst_Xunit']
|
||||||
##teamcity[testFailed name='testFunc4()' message='Failure! |[Loc: tst_xunit.cpp(76)|]' details='a forced failure!']
|
##teamcity[testFailed name='testFunc4()' message='Failure! |[Loc: tst_xunit.cpp(76)|]' details='a forced failure!' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc4()']
|
##teamcity[testFinished name='testFunc4()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc5()']
|
##teamcity[testStarted name='testFunc5()' flowId='tst_Xunit']
|
||||||
##teamcity[testStdOut name='testFunc5()' out='XFAIL |[Loc: tst_xunit.cpp(90)|]: this failure is expected']
|
##teamcity[testStdOut name='testFunc5()' out='XFAIL |[Loc: tst_xunit.cpp(90)|]: this failure is expected' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc5()']
|
##teamcity[testFinished name='testFunc5()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc6()']
|
##teamcity[testStarted name='testFunc6()' flowId='tst_Xunit']
|
||||||
##teamcity[testStdOut name='testFunc6()' out='XFAIL |[Loc: tst_xunit.cpp(96)|]: this failure is also expected']
|
##teamcity[testStdOut name='testFunc6()' out='XFAIL |[Loc: tst_xunit.cpp(96)|]: this failure is also expected' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc6()']
|
##teamcity[testFinished name='testFunc6()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='testFunc7()']
|
##teamcity[testStarted name='testFunc7()' flowId='tst_Xunit']
|
||||||
##teamcity[testFailed name='testFunc7()' message='Failure! |[Loc: tst_xunit.cpp(102)|]' details='|'true|' returned TRUE unexpectedly. ()']
|
##teamcity[testFailed name='testFunc7()' message='Failure! |[Loc: tst_xunit.cpp(102)|]' details='|'true|' returned TRUE unexpectedly. ()' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='testFunc7()']
|
##teamcity[testFinished name='testFunc7()' flowId='tst_Xunit']
|
||||||
##teamcity[testStarted name='cleanupTestCase()']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_Xunit']
|
||||||
##teamcity[testFinished name='cleanupTestCase()']
|
##teamcity[testFinished name='cleanupTestCase()' flowId='tst_Xunit']
|
||||||
##teamcity[testSuiteFinished name='tst_Xunit']
|
##teamcity[testSuiteFinished name='tst_Xunit' flowId='tst_Xunit']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user