tst_QDecompressHelper: Move pointer size check inside the test

For some reason the test case was (no longer?) detected by moc

Change-Id: I20f20de76479f7d9db43fae985cefe0869a7e203
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
bb10
Mårten Nordheim 2021-05-20 12:23:14 +02:00
parent f9c850cc42
commit 4da22d6534
1 changed files with 4 additions and 4 deletions

View File

@ -67,9 +67,7 @@ private Q_SLOTS:
void archiveBomb_data();
void archiveBomb();
#if QT_POINTER_SIZE >= 8
void bigZlib();
#endif
};
void tst_QDecompressHelper::initTestCase()
@ -432,9 +430,11 @@ void tst_QDecompressHelper::archiveBomb()
QVERIFY(bytesRead > 0);
}
#if QT_POINTER_SIZE >= 8
void tst_QDecompressHelper::bigZlib()
{
#if QT_POINTER_SIZE < 8
QSKIP("This cannot be tested on 32-bit systems");
#else
// ZLib uses unsigned integers as their size type internally which creates some special
// cases in the internal code that should be tested!
QFile file(":/5GiB.txt.inflate");
@ -454,8 +454,8 @@ void tst_QDecompressHelper::bigZlib()
std::unique_ptr<char[]> output(new char[expected]);
qsizetype size = helper.read(output.get(), expected);
QCOMPARE(size, expected);
}
#endif
}
QTEST_MAIN(tst_QDecompressHelper)