mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2025-06-01 19:34:09 +02:00
benchlargesync: Do several syncs
Make sure there is already a small sync before so the database is queried. Make also a sync after to run an update with many files in the database.
This commit is contained in:
parent
bf2b089c5c
commit
2953eed729
@ -34,10 +34,16 @@ void addBunchOfFiles(int depth, const QString &path, FileModifier &fi) {
|
|||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
FakeFolder fakeFolder{FileInfo{}};
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
||||||
addBunchOfFiles<10, 8, 4>(0, "", fakeFolder.localModifier());
|
addBunchOfFiles<10, 8, 4>(0, "", fakeFolder.localModifier());
|
||||||
|
|
||||||
qDebug() << "NUMFILES" << numFiles;
|
qDebug() << "NUMFILES" << numFiles;
|
||||||
qDebug() << "NUMDIRS" << numDirs;
|
qDebug() << "NUMDIRS" << numDirs;
|
||||||
return fakeFolder.syncOnce() ? 0 : -1;
|
QElapsedTimer timer;
|
||||||
|
timer.start();
|
||||||
|
bool result1 = fakeFolder.syncOnce();
|
||||||
|
qDebug() << "FIRST SYNC: " << result1 << timer.restart();
|
||||||
|
bool result2 = fakeFolder.syncOnce();
|
||||||
|
qDebug() << "SECOND SYNC: " << result2 << timer.restart();
|
||||||
|
return (result1 && result2) ? 0 : -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user