Files
scylladb/test/unit/suite.yaml
Michael Livshin 3bff94cd29 test.py: refine test mode control
* 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>
2021-05-11 18:39:10 +03:00

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'