[PATCH 1/2] test-lib-functions: test_create_repo learns --bare
From: Jiang Xin <hidden>
Date: 2021-06-17 12:43:44
"test_create_repo" learns --bare option to create bare repository. Signed-off-by: Jiang Xin <redacted> --- t/test-lib-functions.sh | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index b823c14027..f6d1afe295 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh@@ -1216,8 +1216,21 @@ test_atexit () { } # Most tests can use the created repository, but some may need to create more. -# Usage: test_create_repo <directory> +# Usage: test_create_repo [--bare] <directory> test_create_repo () { + bare= && + while test $# -gt 0 + do + case "$1" in + --bare) + bare=yes + ;; + *) + break + ;; + esac + shift + done && test "$#" = 1 || BUG "not 1 parameter to test-create-repo" repo="$1"
@@ -1226,10 +1239,13 @@ test_create_repo () { cd "$repo" || error "Cannot setup test environment" "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \ init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \ - init \ + init ${bare:+--bare} \ "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 || error "cannot run git init -- have you built things yet?" - mv .git/hooks .git/hooks-disabled + if test -z "$bare" + then + mv .git/hooks .git/hooks-disabled + fi ) || exit }
--
2.32.0.rc0.27.g7b1e85181b