1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Add --multithread, --serialized, and --singlethread options to the

speed-check.sh test script.

FossilOrigin-Name: c17078af6046ba3cb0d7819c915a800c851d7368e13d149140db2a124df32bab
This commit is contained in:
drh
2019-09-21 13:34:59 +00:00
parent af9b58b335
commit e47d5ca737
3 changed files with 17 additions and 8 deletions

View File

@ -65,6 +65,15 @@ while test "$1" != ""; do
--nomemstat)
SPEEDTEST_OPTS="$SPEEDTEST_OPTS $1"
;;
--multithread)
SPEEDTEST_OPTS="$SPEEDTEST_OPTS $1"
;;
--singlethread)
SPEEDTEST_OPTS="$SPEEDTEST_OPTS $1"
;;
--serialized)
SPEEDTEST_OPTS="$SPEEDTEST_OPTS $1"
;;
--temp)
SPEEDTEST_OPTS="$SPEEDTEST_OPTS --temp 6"
;;