Tests `'--schedule inheritance weekly -> daily -> hourly` and `maintenance.strategy inheritance` depend on the packfile made in `incremental-repack task`. Factor out the packfile creation. Signed-off-by: Kristoffer Haugsbakk <code@xxxxxxxxxxxxxxx> --- t/t7900-maintenance.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/t7900-maintenance.sh b/t/t7900-maintenance.sh index 99279e41787..bc417b518b5 100755 --- a/t/t7900-maintenance.sh +++ b/t/t7900-maintenance.sh @@ -257,13 +257,15 @@ test_expect_success 'maintenance.loose-objects.auto' ' test_subcommand git prune-packed --quiet <trace-loC ' -test_expect_success 'incremental-repack task' ' +test_expect_success 'setup packfile' ' packDir=.git/objects/pack && for i in $(test_seq 1 5) do test_commit $i || return 1 - done && + done +' +test_expect_success 'incremental-repack task' ' # Create three disjoint pack-files with size BIG, small, small. echo HEAD~2 | git pack-objects --revs $packDir/test-1 && test_tick && -- 2.42.0.2.g879ad04204