mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 21:12:42 +02:00
Log free space and an explanatory message. Fixes #971
This commit is contained in:
parent
1e3ef06c35
commit
30d5d6456c
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue