mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-01 23:54:12 +08:00
mdbx-test: ability to specify single test cases to run from a stochastic test script.
This commit is contained in:
parent
8adf242d02
commit
bfc67a6f75
@ -21,6 +21,10 @@ do
|
||||
--help)
|
||||
echo "--multi Engage multi-process test scenario (default)"
|
||||
echo "--single Execute series of single-process tests (for QEMU, etc)"
|
||||
echo "--nested Execute only 'nested' testcase"
|
||||
echo "--hill Execute only 'hill' testcase"
|
||||
echo "--append Execute only 'append' testcase"
|
||||
echo "--ttl Execute only 'ttl' testcase"
|
||||
echo "--with-valgrind Run tests under Valgrind's memcheck tool"
|
||||
echo "--skip-make Don't (re)build libmdbx and test's executable"
|
||||
echo "--from NN Start iterating from the NN ops per test case"
|
||||
@ -38,6 +42,18 @@ do
|
||||
--single)
|
||||
LIST="--nested --hill --append --ttl --copy"
|
||||
;;
|
||||
--nested)
|
||||
LIST="--nested"
|
||||
;;
|
||||
--hill)
|
||||
LIST="--hill"
|
||||
;;
|
||||
--append)
|
||||
LIST="--append"
|
||||
;;
|
||||
--ttl)
|
||||
LIST="--ttl"
|
||||
;;
|
||||
--with-valgrind)
|
||||
echo " NOTE: Valgrind could produce some false-positive warnings"
|
||||
echo " in multi-process environment with shared memory."
|
||||
|
Loading…
x
Reference in New Issue
Block a user