aboutsummaryrefslogtreecommitdiffstats
path: root/t/t9828-git-p4-map-user.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t9828-git-p4-map-user.sh')
-rwxr-xr-xt/t9828-git-p4-map-user.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/t/t9828-git-p4-map-user.sh b/t/t9828-git-p4-map-user.sh
index e20395c89f..ca6c2942bd 100755
--- a/t/t9828-git-p4-map-user.sh
+++ b/t/t9828-git-p4-map-user.sh
@@ -54,8 +54,4 @@ test_expect_success 'Clone repo root path with all history' '
)
'
-test_expect_success 'kill p4d' '
- kill_p4d
-'
-
test_done
/scm/git/git.git/diff/t/t1301-shared-repo.sh?id=336d09daf288492946f0c51f071da11643f8363d'>t/t1301-shared-repo.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/t1301-shared-repo.sh b/t/t1301-shared-repo.sh
index 5e4252a320..6c78c8bc9b 100755
--- a/t/t1301-shared-repo.sh
+++ b/t/t1301-shared-repo.sh
@@ -83,4 +83,19 @@ do
done
+test_expect_success 'git reflog expire honors core.sharedRepository' '
+ git config core.sharedRepository group &&
+ git reflog expire --all &&
+ actual="$(ls -l .git/logs/refs/heads/master)" &&
+ case "$actual" in
+ -rw-rw-*)
+ : happy
+ ;;
+ *)
+ echo Ooops, .git/logs/refs/heads/master is not 0662 [$actual]
+ false
+ ;;
+ esac
+'
+
test_done