mdbx-tests: add notls into long-stochastic.

More for https://github.com/leo-yuriev/libmdbx/issues/72

Change-Id: I62468a38844292bc4073e36d70e7b7ee8d1a6009
This commit is contained in:
Leonid Yuriev 2019-12-28 02:28:36 +03:00
parent c7ae4ace9d
commit b3a5ab692b

View File

@ -161,7 +161,7 @@ function rep9 { printf "%*s" $1 '' | tr ' ' '9'; }
function join { local IFS="$1"; shift; echo "$*"; }
function bit2option { local -n arr=$1; (( ($2&(1<<$3)) != 0 )) && echo -n '+' || echo -n '-'; echo "${arr[$3]}"; }
options=(writemap coalesce lifo)
options=(writemap coalesce lifo notls)
function bits2list {
local -n arr=$1