Browse Source

t0302: "unreadable" test needs SANITY prereq

The test expects that "chmod -r ~/.git-credentials" would make it
unreadable to the user, and thus needs the SANITY prerequisite.

Reported-by: Jean-Yves LENHOF <jean-yves@lenhof.eu.org>
Signed-off-by: Paul Tan <pyokagan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Paul Tan 10 years ago committed by Junio C Hamano
parent
commit
329af6ca7d
  1. 2
      t/t0302-credential-store.sh

2
t/t0302-credential-store.sh

@ -75,7 +75,7 @@ test_expect_success 'get: use xdg file if home file has no matches' ' @@ -75,7 +75,7 @@ test_expect_success 'get: use xdg file if home file has no matches' '
EOF
'

test_expect_success POSIXPERM 'get: use xdg file if home file is unreadable' '
test_expect_success POSIXPERM,SANITY 'get: use xdg file if home file is unreadable' '
echo "https://home-user:home-pass@example.com" >"$HOME/.git-credentials" &&
chmod -r "$HOME/.git-credentials" &&
mkdir -p "$HOME/.config/git" &&

Loading…
Cancel
Save