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
da5385c6
Commit
da5385c6
authored
Jan 06, 2022
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
status: don't use `// ...` in tests, use `/* ... */`
parent
db3572b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
tests/status/renames.c
+15
-15
No files found.
tests/status/renames.c
View file @
da5385c6
...
...
@@ -723,7 +723,7 @@ void test_status_renames__rename_threshold(void)
git_index
*
index
;
git_status_list
*
statuslist
;
git_status_options
opts
=
GIT_STATUS_OPTIONS_INIT
;
_rename_helper
(
g_repo
,
"ikeepsix.txt"
,
"newname.txt"
,
"Line 1
\n
"
\
"Line 2
\n
"
\
...
...
@@ -735,49 +735,49 @@ void test_status_renames__rename_threshold(void)
"Line 8
\n
"
\
"Line 9
\n
"
);
opts
.
flags
|=
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR
;
opts
.
flags
|=
GIT_STATUS_OPT_INCLUDE_UNTRACKED
;
cl_git_pass
(
git_repository_index
(
&
index
,
g_repo
));
/
/ Default threshold
/
* Default threshold */
{
struct
status_entry
expected
[]
=
{
{
GIT_STATUS_WT_RENAMED
|
GIT_STATUS_WT_MODIFIED
,
"ikeepsix.txt"
,
"newname.txt"
},
};
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
}
/
/ Threshold set to 90
/
* Threshold set to 90 */
{
struct
status_entry
expected
[]
=
{
{
GIT_STATUS_WT_DELETED
,
"ikeepsix.txt"
,
NULL
},
{
GIT_STATUS_WT_NEW
,
"newname.txt"
,
NULL
}
};
opts
.
rename_threshold
=
90
;
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected
,
2
);
git_status_list_free
(
statuslist
);
}
/
/ Threshold set to 25
/
* Threshold set to 25 */
{
struct
status_entry
expected
[]
=
{
{
GIT_STATUS_WT_RENAMED
|
GIT_STATUS_WT_MODIFIED
,
"ikeepsix.txt"
,
"newname.txt"
},
};
opts
.
rename_threshold
=
25
;
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
}
git_index_free
(
index
);
}
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