Просмотр исходного кода

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.
Olivier Goffart 8 лет назад
Родитель
Сommit
2953eed729
1 измененных файлов с 8 добавлено и 2 удалено
  1. 8 2
      test/benchmarks/benchlargesync.cpp

+ 8 - 2
test/benchmarks/benchlargesync.cpp

@@ -34,10 +34,16 @@ void addBunchOfFiles(int depth, const QString &path, FileModifier &fi) {
 int main(int argc, char *argv[])
 {
     QCoreApplication app(argc, argv);
-    FakeFolder fakeFolder{FileInfo{}};
+    FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
     addBunchOfFiles<10, 8, 4>(0, "", fakeFolder.localModifier());
 
     qDebug() << "NUMFILES" << numFiles;
     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;
 }