Shorten cache tests

Reducint the time the load testing runs for seems to reduce the volume by
the same amount. Given that unit tests are good for catching obvious
mistakes, the test should still be adequate.
This commit is contained in:
Markus Mäkelä
2018-08-23 22:58:11 +03:00
parent f60d1cd6b1
commit 742ebd0437

View File

@ -48,9 +48,9 @@ add_test(test_cache_rules testrules)
add_test(test_cache_inmemory_keygeneration testkeygeneration storage_inmemory ${CMAKE_CURRENT_SOURCE_DIR}/input.test)
#usage: testrawstorage storage-module [threads [time [items [min-size [max-size]]]]]\n"
add_test(test_cache_storage_inmemory testrawstorage storage_inmemory 0 10 1000 1024 1024000)
add_test(test_cache_storage_inmemory testrawstorage storage_inmemory 0 3 1000 1024 1024000)
#usage: testlrustorage storage-module [threads [time [items [min-size [max-size]]]]]\n"
add_test(test_cache_lru_inmemory testlrustorage storage_inmemory 0 10 1000 1024 1024000)
add_test(test_cache_lru_inmemory testlrustorage storage_inmemory 0 3 1000 1024 1024000)
add_test(test_cache_options test_cacheoptions)