diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-04-22 13:42:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-22 13:42:55 -0700 |
commit | 95ca48973d351cdd40e6497b82ab85b95e432fab (patch) | |
tree | 9e275d3dad4046ec1f10fde07ee10cee21231449 /t/t4208-log-magic-pathspec.sh | |
parent | Merge branch 'ma/config-doc-fix' (diff) | |
parent | repository: mark the "refs" pointer as private (diff) | |
download | tgif-95ca48973d351cdd40e6497b82ab85b95e432fab.tar.xz |
Merge branch 'jc/missing-ref-store-fix'
We've left the command line parsing of "git log :/a/b/" broken for
about a full year without anybody noticing, which has been
corrected.
* jc/missing-ref-store-fix:
repository: mark the "refs" pointer as private
sha1-name: do not assume that the ref store is initialized
Diffstat (limited to 't/t4208-log-magic-pathspec.sh')
-rwxr-xr-x | t/t4208-log-magic-pathspec.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t4208-log-magic-pathspec.sh b/t/t4208-log-magic-pathspec.sh index 4c8f3b8e1b..6cdbe4747a 100755 --- a/t/t4208-log-magic-pathspec.sh +++ b/t/t4208-log-magic-pathspec.sh @@ -55,6 +55,10 @@ test_expect_success '"git log -- :/a" should not be ambiguous' ' git log -- :/a ' +test_expect_success '"git log :/any/path/" should not segfault' ' + test_must_fail git log :/any/path/ +' + # This differs from the ":/a" check above in that :/in looks like a pathspec, # but doesn't match an actual file. test_expect_success '"git log :/in" should not be ambiguous' ' |