Fix bad xfail test incident mapping in Apple test logger

Change-Id: If0c0204805747b16556cbdedf7c76dbb0a1a2193
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
This commit is contained in:
Tor Arne Vestbø 2018-03-10 12:14:57 +01:00
parent b64ec6687e
commit b202ed3c31

View File

@ -84,7 +84,7 @@ static IncidentClassification incidentTypeToClassification(QAbstractTestLogger::
case QAbstractTestLogger::Pass:
return IncidentClassification(QtInfoMsg, "pass");
case QAbstractTestLogger::XFail:
return IncidentClassification(QtInfoMsg, "xpass");
return IncidentClassification(QtInfoMsg, "xfail");
case QAbstractTestLogger::Fail:
return IncidentClassification(QtCriticalMsg, "fail");
case QAbstractTestLogger::XPass: