From acce7d4b16cf7f4cc69422f5d6532dd205c4506b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Thu, 23 Jun 2022 14:19:46 +0300 Subject: [PATCH] mdbx-test: remove obsolete `coalesce` option. --- test/config.cc | 1 - test/long_stochastic.sh | 2 +- test/main.cc | 1 - test/stochastic_small.sh | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/config.cc b/test/config.cc index 61b299b4..38063892 100644 --- a/test/config.cc +++ b/test/config.cc @@ -369,7 +369,6 @@ const struct option_verb mode_bits[] = { {"notls", unsigned(MDBX_NOTLS)}, {"nordahead", unsigned(MDBX_NORDAHEAD)}, {"nomeminit", unsigned(MDBX_NOMEMINIT)}, - {"coalesce", unsigned(MDBX_COALESCE)}, {"lifo", unsigned(MDBX_LIFORECLAIM)}, {"perturb", unsigned(MDBX_PAGEPERTURB)}, {"accede", unsigned(MDBX_ACCEDE)}, diff --git a/test/long_stochastic.sh b/test/long_stochastic.sh index 04b9976e..16023f73 100755 --- a/test/long_stochastic.sh +++ b/test/long_stochastic.sh @@ -284,7 +284,7 @@ else fi syncmodes=("" ,+nosync-safe ,+nosync-utterly) -options=(writemap coalesce lifo notls perturb) +options=(writemap lifo notls perturb) function join { local IFS="$1"; shift; echo "$*"; } diff --git a/test/main.cc b/test/main.cc index b4b8022b..88d47799 100644 --- a/test/main.cc +++ b/test/main.cc @@ -98,7 +98,6 @@ MDBX_NORETURN void usage(void) { " accede == MDBX_ACCEDE\n" " nometasync == MDBX_NOMETASYNC\n" " lifo == MDBX_LIFORECLAIM\n" - " coalesce == MDBX_COALESCE\n" " nosync-safe == MDBX_SAFE_NOSYNC\n" " writemap == MDBX_WRITEMAP\n" " nosync-utterly == MDBX_UTTERLY_NOSYNC\n" diff --git a/test/stochastic_small.sh b/test/stochastic_small.sh index 8c9bba5f..5e216ced 100755 --- a/test/stochastic_small.sh +++ b/test/stochastic_small.sh @@ -263,7 +263,7 @@ else fi syncmodes=("" ,+nosync-safe ,+nosync-utterly) -options=(writemap coalesce lifo notls perturb) +options=(writemap lifo notls perturb) function join { local IFS="$1"; shift; echo "$*"; }