Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-08-07 21:57:18 +0300
committerJunio C Hamano <gitster@pobox.com>2023-08-07 21:57:18 +0300
commita04cef9fd74df0af3f406102897fc265ff53dc1b (patch)
tree18ed43d2dfa1946a8c0e437564659e7aef6970d3 /t
parente48d9c78cc00805660b83ac809188d0c413e4c46 (diff)
parentd089a06421c86d120f50f05020ca6b833b068dcb (diff)
Merge branch 'rs/bundle-parseopt-cleanup'
Code clean-up. * rs/bundle-parseopt-cleanup: bundle: use OPT_PASSTHRU_ARGV
Diffstat (limited to 't')
-rwxr-xr-xt/t6020-bundle-misc.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t6020-bundle-misc.sh b/t/t6020-bundle-misc.sh
index dface8bcfe..3e6bcbf30c 100755
--- a/t/t6020-bundle-misc.sh
+++ b/t/t6020-bundle-misc.sh
@@ -619,6 +619,12 @@ test_expect_success TTY 'create --quiet disables all bundle progress' '
test_must_be_empty err
'
+test_expect_success 'bundle progress with --no-quiet' '
+ GIT_PROGRESS_DELAY=0 \
+ git bundle create --no-quiet out.bundle --all 2>err &&
+ grep "%" err
+'
+
test_expect_success 'read bundle over stdin' '
git bundle create some.bundle HEAD &&