8000 Longpath filter bug by lrm29 · Pull Request #6055 · libgit2/libgit2 · GitHub
[go: up one dir, main page]

Skip to content

Longpath filter bug #6055

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 20, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Edward Thomson <ethomson@github.com>
  • Loading branch information
lrm29 and Edward Thomson authored Sep 14, 2021
commit 0d30e7bb3df520bb4f36d54b339baf231864b05d
2 changes: 2 additions & 0 deletions tests/win32/longpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ void test_win32_longpath__workdir_path_validated(void)
#endif
}

#ifdef GIT_WIN32
static void assert_longpath_status_and_add(git_repository* repo) {
git_index *index;
git_buf out = GIT_BUF_INIT;
Expand All @@ -85,6 +86,7 @@ static void assert_longpath_status_and_add(git_repository* repo) {
git_index_free(index);
git_buf_dispose(&out);
}
#endif

void test_win32_longpath__status_and_add(void)
{
Expand Down
0