tests: Replace Q_OS_MACX -> Q_OS_OSX
Use the correct identifier for the OS X operating system. Change-Id: I7158a6b77e5e7418bc6b0a565f003500820a346d Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
parent
a9d5627e6a
commit
bdc558019a
@ -514,20 +514,20 @@ void tst_QSettings::ctor()
|
||||
QSettings settings5(format, QSettings::UserScope, "SoftWare.ORG", "killerApp");
|
||||
if (format == QSettings::NativeFormat) {
|
||||
#if defined(Q_OS_WIN) || defined(Q_OS_DARWIN)
|
||||
# ifdef Q_OS_MACX
|
||||
# ifdef Q_OS_OSX
|
||||
if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8)
|
||||
QEXPECT_FAIL("native", "See QTBUG-32655", Continue);
|
||||
# endif // Q_OS_MACX
|
||||
# endif // Q_OS_OSX
|
||||
QCOMPARE(settings5.value("key 1").toString(), QString("gurgle"));
|
||||
#else
|
||||
QVERIFY(!settings5.contains("key 1"));
|
||||
#endif
|
||||
} else {
|
||||
#if defined(Q_OS_WIN) || defined(Q_OS_DARWIN)
|
||||
# ifdef Q_OS_MACX
|
||||
# ifdef Q_OS_OSX
|
||||
if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8)
|
||||
QEXPECT_FAIL("", "See QTBUG-32655", Continue);
|
||||
# endif // Q_OS_MACX
|
||||
# endif // Q_OS_OSX
|
||||
QCOMPARE(settings5.value("key 1").toString(), QString("gurgle"));
|
||||
#else
|
||||
QVERIFY(!settings5.contains("key 1"));
|
||||
@ -3183,7 +3183,7 @@ void tst_QSettings::rainersSyncBugOnMac()
|
||||
|
||||
{
|
||||
QSettings s3(format, QSettings::UserScope, "software.org", "KillerAPP");
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8)
|
||||
QEXPECT_FAIL("native", "See QTBUG-32655", Continue);
|
||||
#endif
|
||||
|
@ -223,7 +223,7 @@ void tst_QWindow::positioning()
|
||||
|
||||
window.setWindowState(Qt::WindowFullScreen);
|
||||
QCoreApplication::processEvents();
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
QEXPECT_FAIL("", "Multiple failures in this test on Mac OS X, see QTBUG-23059", Abort);
|
||||
#endif
|
||||
QTRY_COMPARE(window.received(QEvent::Resize), 2);
|
||||
|
@ -502,10 +502,10 @@ void tst_QGlyphRun::drawMultiScriptText2()
|
||||
drawGlyphs.save("drawMultiScriptText2_drawGlyphIndexes.png");
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
if (drawGlyphs.toImage() != textLayoutDraw.toImage())
|
||||
QEXPECT_FAIL("", "See QTBUG-32690", Continue);
|
||||
#endif // Q_OS_MACX
|
||||
#endif // Q_OS_OSX
|
||||
QCOMPARE(drawGlyphs, textLayoutDraw);
|
||||
}
|
||||
|
||||
|
@ -7588,7 +7588,7 @@ void tst_QNetworkReply::backgroundRequestInterruption()
|
||||
QNetworkSessionPrivate::setUsagePolicies(*const_cast<QNetworkSession *>(session.data()), original);
|
||||
|
||||
QVERIFY(reply->isFinished());
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8)
|
||||
QEXPECT_FAIL("ftp, bg, nobg", "See QTBUG-32435", Abort);
|
||||
#endif
|
||||
|
@ -380,7 +380,7 @@ void tst_QNetworkProxyFactory::genericSystemProxy()
|
||||
QFETCH(int, port);
|
||||
|
||||
// The generic system proxy is only available on the following platforms
|
||||
#if (!defined Q_OS_BLACKBERRY) && (!defined Q_OS_WIN) && (!defined Q_OS_MACX)
|
||||
#if (!defined Q_OS_BLACKBERRY) && (!defined Q_OS_WIN) && (!defined Q_OS_OSX)
|
||||
qputenv(envVar, url);
|
||||
const QList<QNetworkProxy> systemProxy = QNetworkProxyFactory::systemProxyForQuery();
|
||||
QCOMPARE(systemProxy.size(), 1);
|
||||
|
@ -439,7 +439,7 @@ void tst_QWizard::setPixmap()
|
||||
QVERIFY(wizard.pixmap(QWizard::BannerPixmap).isNull());
|
||||
QVERIFY(wizard.pixmap(QWizard::LogoPixmap).isNull());
|
||||
QVERIFY(wizard.pixmap(QWizard::WatermarkPixmap).isNull());
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
QVERIFY(wizard.pixmap(QWizard::BackgroundPixmap).isNull() == false);
|
||||
#else
|
||||
QVERIFY(wizard.pixmap(QWizard::BackgroundPixmap).isNull());
|
||||
@ -448,7 +448,7 @@ void tst_QWizard::setPixmap()
|
||||
QVERIFY(page->pixmap(QWizard::BannerPixmap).isNull());
|
||||
QVERIFY(page->pixmap(QWizard::LogoPixmap).isNull());
|
||||
QVERIFY(page->pixmap(QWizard::WatermarkPixmap).isNull());
|
||||
#ifdef Q_OS_MACX
|
||||
#ifdef Q_OS_OSX
|
||||
QVERIFY(wizard.pixmap(QWizard::BackgroundPixmap).isNull() == false);
|
||||
#else
|
||||
QVERIFY(page->pixmap(QWizard::BackgroundPixmap).isNull());
|
||||
|
Loading…
Reference in New Issue
Block a user