Files
git/t/t6136-pathspec-in-bare.sh
Patrick Steinhardt fc1ddf42af t: remove TEST_PASSES_SANITIZE_LEAK annotations
Now that the default value for TEST_PASSES_SANITIZE_LEAK is `true` there
is no longer a need to have that variable declared in all of our tests.
Drop it.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2024-11-21 08:23:48 +09:00

39 lines
825 B
Bash
Executable File

#!/bin/sh
test_description='diagnosing out-of-scope pathspec'
. ./test-lib.sh
test_expect_success 'setup a bare and non-bare repository' '
test_commit file1 &&
git clone --bare . bare
'
test_expect_success 'log and ls-files in a bare repository' '
(
cd bare &&
test_must_fail git log -- .. >out 2>err &&
test_must_be_empty out &&
test_grep "outside repository" err &&
test_must_fail git ls-files -- .. >out 2>err &&
test_must_be_empty out &&
test_grep "outside repository" err
)
'
test_expect_success 'log and ls-files in .git directory' '
(
cd .git &&
test_must_fail git log -- .. >out 2>err &&
test_must_be_empty out &&
test_grep "outside repository" err &&
test_must_fail git ls-files -- .. >out 2>err &&
test_must_be_empty out &&
test_grep "outside repository" err
)
'
test_done