mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
* Add ability to skip tests in individual modes using "skip_in_<mode>". * Add ability to allow tests in specific modes using "run_in_<mode>". * Rename "skip_in_debug_mode" to "skip_in_debug_modes", because there is an actual mode named "debug" and this is confusing. Signed-off-by: Michael Livshin <michael.livshin@scylladb.com>
27 lines
986 B
YAML
27 lines
986 B
YAML
# Suite test type. Supported types: unit, boost, cql
|
|
type: unit
|
|
# A list of tests that are only run in dev and release modes
|
|
skip_in_debug_modes:
|
|
- lsa_async_eviction_test
|
|
- lsa_sync_eviction_test
|
|
- row_cache_alloc_stress_test
|
|
- row_cache_stress_test
|
|
# Custom command line arguments for some of the tests
|
|
custom_args:
|
|
lsa_async_eviction_test:
|
|
- '-c1 -m200M --size 1024 --batch 3000 --count 2000000'
|
|
lsa_sync_eviction_test:
|
|
- '-c1 -m100M --count 10 --standard-object-size 3000000'
|
|
- '-c1 -m100M --count 24000 --standard-object-size 2048'
|
|
- '-c1 -m1G --count 4000000 --standard-object-size 128'
|
|
row_cache_alloc_stress_test:
|
|
- '-c1 -m2G'
|
|
row_cache_stress_test:
|
|
- '-c1 -m1G --seconds 10'
|
|
btree_stress_test:
|
|
- '-c1 -m1G --count=4132 --iter=9'
|
|
- '-c1 -m1G --count=27 --iter=312'
|
|
btree_compaction_test:
|
|
- '-c1 -m1G --count=10000 --iter=13'
|
|
- '-c1 -m1G --count=17 --iter=3'
|