From: Justin Tobler <jltobler@xxxxxxxxx> In future tests it will be neccesary to create repositories with a set number of tables. To make this easier, introduce the `GIT_TEST_REFTABLE_NO_AUTOCOMPACTION` environment variable that, when set, disables autocompaction of reftables. Signed-off-by: Justin Tobler <jltobler@xxxxxxxxx> --- reftable/stack.c | 2 +- reftable/system.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/reftable/stack.c b/reftable/stack.c index b64e55648aa..2370d93d13b 100644 --- a/reftable/stack.c +++ b/reftable/stack.c @@ -681,7 +681,7 @@ int reftable_addition_commit(struct reftable_addition *add) if (err) goto done; - if (!add->stack->disable_auto_compact) + if (!add->stack->disable_auto_compact && !git_env_bool("GIT_TEST_REFTABLE_NO_AUTOCOMPACTION", 0)) err = reftable_stack_auto_compact(add->stack); done: diff --git a/reftable/system.h b/reftable/system.h index 6b74a815143..ec08b728177 100644 --- a/reftable/system.h +++ b/reftable/system.h @@ -15,6 +15,7 @@ license that can be found in the LICENSE file or at #include "strbuf.h" #include "hash-ll.h" /* hash ID, sizes.*/ #include "dir.h" /* remove_dir_recursively, for tests.*/ +#include "parse.h" int hash_size(uint32_t id); -- gitgitgadget