Fix a few QCOMPARE calls (type casting bugs)

This commit is contained in:
alqualos 2017-02-05 06:07:39 +00:00
parent 7667ce57c9
commit 566ec23da1

View file

@ -299,11 +299,11 @@ void TestQuaZipFile::posWrite()
for (int i = 0; i < buffer.size(); ++i) for (int i = 0; i < buffer.size(); ++i)
buffer[i] = static_cast<char>(qrand()); buffer[i] = static_cast<char>(qrand());
zipFile.write(buffer); zipFile.write(buffer);
QCOMPARE(zipFile.pos(), size / 2); QCOMPARE(zipFile.pos(), qint64(size / 2));
for (int i = 0; i < size - size / 2; ++i) { for (int i = 0; i < size - size / 2; ++i) {
zipFile.putChar(static_cast<char>(qrand())); zipFile.putChar(static_cast<char>(qrand()));
} }
QCOMPARE(zipFile.pos(), size); QCOMPARE(zipFile.pos(), qint64(size));
} }
testZip.close(); testZip.close();
curDir.remove(zipName); curDir.remove(zipName);