Log free space and an explanatory message. Fixes #971

This commit is contained in:
Dale Glass 2024-06-01 21:28:08 +02:00
parent 1e3ef06c35
commit 30d5d6456c

View file

@ -132,6 +132,11 @@ void FileCacheTests::testFreeSpacePreservation() {
cache->setMinFreeSize(targetFreeSpace); cache->setMinFreeSize(targetFreeSpace);
QCOMPARE(cache->getNumCachedFiles(), (size_t)5); QCOMPARE(cache->getNumCachedFiles(), (size_t)5);
QCOMPARE(cache->getNumTotalFiles(), (size_t)5); QCOMPARE(cache->getNumTotalFiles(), (size_t)5);
qDebug() << "Free space: " << getFreeSpace();
qDebug() << "Target : " << targetFreeSpace;
qInfo() << "The following test may fail if free disk space was changed by another program during the test's runtime";
QVERIFY(getFreeSpace() >= targetFreeSpace); QVERIFY(getFreeSpace() >= targetFreeSpace);
for (int i = 0; i < 95; ++i) { for (int i = 0; i < 95; ++i) {
std::string key = getFileKey(i); std::string key = getFileKey(i);