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
dbb24a39
Commit
dbb24a39
authored
Jun 22, 2012
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
repository: enhance reinitialization test coverage
parent
2c227b8b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
tests-clar/repo/init.c
+31
-0
No files found.
tests-clar/repo/init.c
View file @
dbb24a39
...
...
@@ -242,6 +242,37 @@ void test_repo_init__reinit_doesnot_overwrite_ignorecase(void)
git_config_free
(
config
);
}
void
test_repo_init__reinit_overwrites_filemode
(
void
)
{
git_config
*
config
;
int
expected
,
current_value
;
#ifdef GIT_WIN32
expected
=
false
;
#else
expected
=
true
;
#endif
/* Init a new repo */
cl_git_pass
(
git_repository_init
(
&
_repo
,
"config_entry/test.git"
,
1
));
/* Change the "core.filemode" config value to something unlikely */
git_repository_config
(
&
config
,
_repo
);
git_config_set_bool
(
config
,
"core.filemode"
,
!
expected
);
git_config_free
(
config
);
git_repository_free
(
_repo
);
/* Reinit the repository */
cl_git_pass
(
git_repository_init
(
&
_repo
,
"config_entry/test.git"
,
1
));
git_repository_config
(
&
config
,
_repo
);
/* Ensure the "core.filemode" config value has been reset */
cl_git_pass
(
git_config_get_bool
(
&
current_value
,
config
,
"core.filemode"
));
cl_assert_equal_i
(
expected
,
current_value
);
git_config_free
(
config
);
}
void
test_repo_init__sets_logAllRefUpdates_according_to_type_of_repository
(
void
)
{
assert_config_entry_on_init_bytype
(
"core.logallrefupdates"
,
GIT_ENOTFOUND
,
true
);
...
...
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