Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
c017c183
Commit
c017c183
authored
Mar 22, 2016
by
Marc Strapetz
Committed by
Edward Thomson
Mar 24, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iterator: new workdir-iterator test for pathlist + includings trees
parent
09064f15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
tests/iterator/workdir.c
+26
-0
No files found.
tests/iterator/workdir.c
View file @
c017c183
...
...
@@ -1430,3 +1430,29 @@ void test_iterator_workdir__pathlist_with_directory(void)
git_vector_free
(
&
filelist
);
}
void
test_iterator_workdir__pathlist_with_directory_include_trees
(
void
)
{
git_iterator
*
i
;
git_iterator_options
i_opts
=
GIT_ITERATOR_OPTIONS_INIT
;
git_vector
filelist
;
const
char
*
expected
[]
=
{
"subdir/"
,
"subdir/README"
,
"subdir/new.txt"
,
"subdir/subdir2/"
,
"subdir/subdir2/README"
,
"subdir/subdir2/new.txt"
,
};
size_t
expected_len
=
6
;
cl_git_pass
(
git_vector_init
(
&
filelist
,
100
,
&
git__strcmp_cb
));
cl_git_pass
(
git_vector_insert
(
&
filelist
,
"subdir/"
));
g_repo
=
cl_git_sandbox_init
(
"testrepo2"
);
i_opts
.
pathlist
.
strings
=
(
char
**
)
filelist
.
contents
;
i_opts
.
pathlist
.
count
=
filelist
.
length
;
i_opts
.
flags
|=
GIT_ITERATOR_DONT_IGNORE_CASE
|
GIT_ITERATOR_INCLUDE_TREES
;
cl_git_pass
(
git_iterator_for_workdir
(
&
i
,
g_repo
,
NULL
,
NULL
,
&
i_opts
));
expect_iterator_items
(
i
,
expected_len
,
expected
,
expected_len
,
expected
);
git_iterator_free
(
i
);
git_vector_free
(
&
filelist
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment