Debugger: Remove gcc version output when using the cdb in the dumper test.

Change-Id: I5560c8a5bc3eaefb8c40256dff4082b9b380e1f3
Reviewed-by: hjk <hjk121@nokiamail.com>
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
David Schulz
2013-12-02 08:54:56 +01:00
committed by Christian Stenger
parent f8677917f2
commit cfe84eaae2
+3 -4
View File
@@ -1146,10 +1146,9 @@ void tst_Dumpers::dumper()
m_keepTemp = false;
} else {
qDebug() << "CONTENTS : " << contents;
qDebug() << "Qt VERSION : "
<< qPrintable(QString::number(context.qtVersion, 16));
qDebug() << "GCC VERSION : "
<< qPrintable(QString::number(context.gccVersion, 16));
qDebug() << "Qt VERSION : " << qPrintable(QString::number(context.qtVersion, 16));
if (m_debuggerEngine != DumpTestCdbEngine)
qDebug() << "GCC VERSION : " << qPrintable(QString::number(context.gccVersion, 16));
qDebug() << "BUILD DIR : " << qPrintable(t->buildPath);
}
QVERIFY(ok);