mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-04 17:14: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)
|
--help)
|
||||||
echo "--multi Engage multi-process test scenario (default)"
|
echo "--multi Engage multi-process test scenario (default)"
|
||||||
echo "--single Execute series of single-process tests (for QEMU, etc)"
|
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 "--with-valgrind Run tests under Valgrind's memcheck tool"
|
||||||
echo "--skip-make Don't (re)build libmdbx and test's executable"
|
echo "--skip-make Don't (re)build libmdbx and test's executable"
|
||||||
echo "--from NN Start iterating from the NN ops per test case"
|
echo "--from NN Start iterating from the NN ops per test case"
|
||||||
@ -38,6 +42,18 @@ do
|
|||||||
--single)
|
--single)
|
||||||
LIST="--nested --hill --append --ttl --copy"
|
LIST="--nested --hill --append --ttl --copy"
|
||||||
;;
|
;;
|
||||||
|
--nested)
|
||||||
|
LIST="--nested"
|
||||||
|
;;
|
||||||
|
--hill)
|
||||||
|
LIST="--hill"
|
||||||
|
;;
|
||||||
|
--append)
|
||||||
|
LIST="--append"
|
||||||
|
;;
|
||||||
|
--ttl)
|
||||||
|
LIST="--ttl"
|
||||||
|
;;
|
||||||
--with-valgrind)
|
--with-valgrind)
|
||||||
echo " NOTE: Valgrind could produce some false-positive warnings"
|
echo " NOTE: Valgrind could produce some false-positive warnings"
|
||||||
echo " in multi-process environment with shared memory."
|
echo " in multi-process environment with shared memory."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user