Mercurial > hg > orthanc
diff UnitTestsSources/ServerIndexTests.cpp @ 2950:dc18d5804746
support of JobsHistorySize set to zero
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 30 Nov 2018 17:19:57 +0100 |
parents | 22524fd06225 |
children | 7695a9c81099 |
line wrap: on
line diff
--- a/UnitTestsSources/ServerIndexTests.cpp Thu Nov 29 20:36:55 2018 +0100 +++ b/UnitTestsSources/ServerIndexTests.cpp Fri Nov 30 17:19:57 2018 +0100 @@ -677,7 +677,7 @@ FilesystemStorage storage(path); DatabaseWrapper db; // The SQLite DB is in memory db.Open(); - ServerContext context(db, storage, true /* running unit tests */); + ServerContext context(db, storage, true /* running unit tests */, 10); context.SetupJobsEngine(true, false); ServerIndex& index = context.GetIndex(); @@ -777,7 +777,7 @@ FilesystemStorage storage(path); DatabaseWrapper db; // The SQLite DB is in memory db.Open(); - ServerContext context(db, storage, true /* running unit tests */); + ServerContext context(db, storage, true /* running unit tests */, 10); context.SetupJobsEngine(true, false); ServerIndex& index = context.GetIndex(); @@ -865,7 +865,7 @@ MemoryStorageArea storage; DatabaseWrapper db; // The SQLite DB is in memory db.Open(); - ServerContext context(db, storage, true /* running unit tests */); + ServerContext context(db, storage, true /* running unit tests */, 10); context.SetupJobsEngine(true, false); context.SetCompressionEnabled(true);