Fixed MacOS error.

This commit is contained in:
NissimHadar 2018-10-10 08:12:05 -07:00
parent 2b59180fef
commit 1d09f6efef

View file

@ -532,7 +532,7 @@ void TestRunner::parseBuildInformation() {
QString platformOfInterest; QString platformOfInterest;
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
platformOfInterest = "windows"; platformOfInterest = "windows";
#elif Q_OS_MAC #elif defined(Q_OS_MAC)
platformOfInterest = "mac"; platformOfInterest = "mac";
#endif #endif
QDomElement element = domDocument.documentElement(); QDomElement element = domDocument.documentElement();