forked from qt-creator/qt-creator
Fix compile warning
Change-Id: Ib98f444baa1c35e038921b4e25927faee64f0877 Reviewed-by: Andre Poenitz <andre.poenitz@theqtcompany.com>
This commit is contained in:
@@ -59,8 +59,7 @@ Result::Type TestResult::resultFromString(const QString &resultString)
|
|||||||
return Result::BLACKLISTED_PASS;
|
return Result::BLACKLISTED_PASS;
|
||||||
if (resultString == QLatin1String("bfail"))
|
if (resultString == QLatin1String("bfail"))
|
||||||
return Result::BLACKLISTED_FAIL;
|
return Result::BLACKLISTED_FAIL;
|
||||||
qDebug(" unexpected testresult...");
|
qDebug("Unexpected test result: %s", qPrintable(resultString));
|
||||||
qDebug(resultString.toLatin1());
|
|
||||||
return Result::UNKNOWN;
|
return Result::UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user