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
ca14942e
Commit
ca14942e
authored
Nov 11, 2021
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: declare functions statically where appropriate
parent
3f024b6d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
56 additions
and
60 deletions
+56
-60
tests/checkout/tree.c
+6
-4
tests/clone/nonetwork.c
+1
-1
tests/commit/commit.c
+2
-2
tests/config/stress.c
+1
-1
tests/core/copy.c
+3
-1
tests/diff/binary.c
+1
-1
tests/diff/rename.c
+1
-1
tests/diff/tree.c
+1
-1
tests/email/create.c.bak
+0
-0
tests/fetchhead/nonetwork.c
+2
-2
tests/filter/custom_helpers.c
+1
-1
tests/filter/file.c
+3
-3
tests/merge/merge_helpers.c
+1
-1
tests/network/fetchlocal.c
+2
-2
tests/network/remote/push.c
+2
-2
tests/notes/notes.c
+1
-1
tests/object/tag/write.c
+1
-1
tests/odb/loose.c
+1
-1
tests/online/clone.c
+2
-2
tests/online/push_util.c
+1
-1
tests/pack/filelimit.c
+1
-1
tests/patch/print.c
+1
-1
tests/path/dotgit.c
+1
-1
tests/path/win32.c
+4
-12
tests/rebase/iterator.c
+1
-1
tests/rebase/merge.c
+1
-1
tests/rebase/sign.c
+1
-1
tests/refs/shorthand.c
+1
-1
tests/remote/fetch.c
+1
-1
tests/remote/httpproxy.c
+3
-3
tests/stash/apply.c
+3
-3
tests/stash/drop.c
+1
-1
tests/status/worktree.c
+1
-1
tests/submodule/modify.c
+3
-3
No files found.
tests/checkout/tree.c
View file @
ca14942e
...
...
@@ -509,7 +509,7 @@ void test_checkout_tree__can_disable_pattern_match(void)
cl_assert
(
git_fs_path_isfile
(
"testrepo/branch_file.txt"
));
}
void
assert_conflict
(
static
void
assert_conflict
(
const
char
*
entry_path
,
const
char
*
new_content
,
const
char
*
parent_sha
,
...
...
@@ -1034,7 +1034,8 @@ void test_checkout_tree__filemode_preserved_in_index(void)
git_index_free
(
index
);
}
mode_t
read_filemode
(
const
char
*
path
)
#ifndef GIT_WIN32
static
mode_t
read_filemode
(
const
char
*
path
)
{
git_str
fullpath
=
GIT_STR_INIT
;
struct
stat
st
;
...
...
@@ -1050,6 +1051,7 @@ mode_t read_filemode(const char *path)
return
result
;
}
#endif
void
test_checkout_tree__filemode_preserved_in_workdir
(
void
)
{
...
...
@@ -1267,7 +1269,7 @@ void test_checkout_tree__case_changing_rename(void)
git_commit_free
(
master_commit
);
}
void
perfdata_cb
(
const
git_checkout_perfdata
*
in
,
void
*
payload
)
static
void
perfdata_cb
(
const
git_checkout_perfdata
*
in
,
void
*
payload
)
{
memcpy
(
payload
,
in
,
sizeof
(
git_checkout_perfdata
));
}
...
...
@@ -1296,7 +1298,7 @@ void test_checkout_tree__can_collect_perfdata(void)
git_object_free
(
obj
);
}
void
update_attr_callback
(
static
void
update_attr_callback
(
const
char
*
path
,
size_t
completed_steps
,
size_t
total_steps
,
...
...
tests/clone/nonetwork.c
View file @
ca14942e
...
...
@@ -109,7 +109,7 @@ void test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory(vo
cl_git_fail
(
git_clone
(
&
g_repo
,
cl_git_fixture_url
(
"testrepo.git"
),
"./foo"
,
&
g_options
));
}
int
custom_origin_name_remote_create
(
static
int
custom_origin_name_remote_create
(
git_remote
**
out
,
git_repository
*
repo
,
const
char
*
name
,
...
...
tests/commit/commit.c
View file @
ca14942e
...
...
@@ -111,7 +111,7 @@ void test_commit_commit__create_initial_commit_parent_not_current(void)
git_signature_free
(
s
);
}
void
assert_commit_summary
(
const
char
*
expected
,
const
char
*
given
)
static
void
assert_commit_summary
(
const
char
*
expected
,
const
char
*
given
)
{
git_commit
*
dummy
;
...
...
@@ -123,7 +123,7 @@ void assert_commit_summary(const char *expected, const char *given)
git_commit__free
(
dummy
);
}
void
assert_commit_body
(
const
char
*
expected
,
const
char
*
given
)
static
void
assert_commit_body
(
const
char
*
expected
,
const
char
*
given
)
{
git_commit
*
dummy
;
...
...
tests/config/stress.c
View file @
ca14942e
...
...
@@ -39,7 +39,7 @@ void test_config_stress__dont_break_on_invalid_input(void)
git_config_free
(
config
);
}
void
assert_config_value
(
git_config
*
config
,
const
char
*
key
,
const
char
*
value
)
static
void
assert_config_value
(
git_config
*
config
,
const
char
*
key
,
const
char
*
value
)
{
git_buf_dispose
(
&
buf
);
cl_git_pass
(
git_config_get_string_buf
(
&
buf
,
config
,
key
));
...
...
tests/core/copy.c
View file @
ca14942e
...
...
@@ -45,7 +45,8 @@ void test_core_copy__file_in_dir(void)
cl_assert
(
!
git_fs_path_isdir
(
"an_dir"
));
}
void
assert_hard_link
(
const
char
*
path
)
#ifndef GIT_WIN32
static
void
assert_hard_link
(
const
char
*
path
)
{
/* we assert this by checking that there's more than one link to the file */
struct
stat
st
;
...
...
@@ -54,6 +55,7 @@ void assert_hard_link(const char *path)
cl_git_pass
(
p_stat
(
path
,
&
st
));
cl_assert
(
st
.
st_nlink
>
1
);
}
#endif
void
test_core_copy__tree
(
void
)
{
...
...
tests/diff/binary.c
View file @
ca14942e
...
...
@@ -17,7 +17,7 @@ void test_diff_binary__cleanup(void)
cl_git_sandbox_cleanup
();
}
void
test_patch
(
static
void
test_patch
(
const
char
*
one
,
const
char
*
two
,
const
git_diff_options
*
opts
,
...
...
tests/diff/rename.c
View file @
ca14942e
...
...
@@ -938,7 +938,7 @@ struct rename_expected
size_t
idx
;
};
int
test_names_expected
(
const
git_diff_delta
*
delta
,
float
progress
,
void
*
p
)
static
int
test_names_expected
(
const
git_diff_delta
*
delta
,
float
progress
,
void
*
p
)
{
struct
rename_expected
*
expected
=
p
;
...
...
tests/diff/tree.c
View file @
ca14942e
...
...
@@ -320,7 +320,7 @@ void test_diff_tree__checks_options_version(void)
err
=
git_error_last
();
}
void
process_tree_to_tree_diffing
(
static
void
process_tree_to_tree_diffing
(
const
char
*
old_commit
,
const
char
*
new_commit
)
{
...
...
tests/email/create.c.bak
0 → 100644
View file @
ca14942e
This diff is collapsed.
Click to expand it.
tests/fetchhead/nonetwork.c
View file @
ca14942e
...
...
@@ -408,7 +408,7 @@ static bool found_master;
static
bool
found_haacked
;
static
bool
find_master_haacked_called
;
int
find_master_haacked
(
const
char
*
ref_name
,
const
char
*
remote_url
,
const
git_oid
*
oid
,
unsigned
int
is_merge
,
void
*
payload
)
static
int
find_master_haacked
(
const
char
*
ref_name
,
const
char
*
remote_url
,
const
git_oid
*
oid
,
unsigned
int
is_merge
,
void
*
payload
)
{
GIT_UNUSED
(
remote_url
);
GIT_UNUSED
(
oid
);
...
...
@@ -466,7 +466,7 @@ struct prefix_count {
int
expected
;
};
int
count_refs
(
const
char
*
ref_name
,
const
char
*
remote_url
,
const
git_oid
*
oid
,
unsigned
int
is_merge
,
void
*
payload
)
static
int
count_refs
(
const
char
*
ref_name
,
const
char
*
remote_url
,
const
git_oid
*
oid
,
unsigned
int
is_merge
,
void
*
payload
)
{
int
i
;
struct
prefix_count
*
prefix_counts
=
(
struct
prefix_count
*
)
payload
;
...
...
tests/filter/custom_helpers.c
View file @
ca14942e
...
...
@@ -128,7 +128,7 @@ git_filter *create_reverse_filter(const char *attrs)
return
filter
;
}
int
erroneous_filter_stream
(
static
int
erroneous_filter_stream
(
git_writestream
**
out
,
git_filter
*
self
,
void
**
payload
,
...
...
tests/filter/file.c
View file @
ca14942e
...
...
@@ -55,19 +55,19 @@ struct buf_writestream {
git_str
buf
;
};
int
buf_writestream_write
(
git_writestream
*
s
,
const
char
*
buf
,
size_t
len
)
static
int
buf_writestream_write
(
git_writestream
*
s
,
const
char
*
buf
,
size_t
len
)
{
struct
buf_writestream
*
stream
=
(
struct
buf_writestream
*
)
s
;
return
git_str_put
(
&
stream
->
buf
,
buf
,
len
);
}
int
buf_writestream_close
(
git_writestream
*
s
)
static
int
buf_writestream_close
(
git_writestream
*
s
)
{
GIT_UNUSED
(
s
);
return
0
;
}
void
buf_writestream_free
(
git_writestream
*
s
)
static
void
buf_writestream_free
(
git_writestream
*
s
)
{
struct
buf_writestream
*
stream
=
(
struct
buf_writestream
*
)
s
;
git_str_dispose
(
&
stream
->
buf
);
...
...
tests/merge/merge_helpers.c
View file @
ca14942e
...
...
@@ -328,7 +328,7 @@ int merge_test_reuc(git_index *index, const struct merge_reuc_entry expected[],
return
1
;
}
int
dircount
(
void
*
payload
,
git_str
*
pathbuf
)
static
int
dircount
(
void
*
payload
,
git_str
*
pathbuf
)
{
size_t
*
entries
=
payload
;
size_t
len
=
git_str_len
(
pathbuf
);
...
...
tests/network/fetchlocal.c
View file @
ca14942e
...
...
@@ -108,7 +108,7 @@ void test_network_fetchlocal__prune(void)
git_repository_free
(
repo
);
}
int
update_tips_fail_on_call
(
const
char
*
ref
,
const
git_oid
*
old
,
const
git_oid
*
new
,
void
*
data
)
static
int
update_tips_fail_on_call
(
const
char
*
ref
,
const
git_oid
*
old
,
const
git_oid
*
new
,
void
*
data
)
{
GIT_UNUSED
(
ref
);
GIT_UNUSED
(
old
);
...
...
@@ -119,7 +119,7 @@ int update_tips_fail_on_call(const char *ref, const git_oid *old, const git_oid
return
0
;
}
void
assert_ref_exists
(
git_repository
*
repo
,
const
char
*
name
)
static
void
assert_ref_exists
(
git_repository
*
repo
,
const
char
*
name
)
{
git_reference
*
ref
;
...
...
tests/network/remote/push.c
View file @
ca14942e
...
...
@@ -29,7 +29,7 @@ void test_network_remote_push__cleanup(void)
cl_fixture_cleanup
(
"dummy.git"
);
}
int
negotiation_cb
(
const
git_push_update
**
updates
,
size_t
len
,
void
*
payload
)
static
int
negotiation_cb
(
const
git_push_update
**
updates
,
size_t
len
,
void
*
payload
)
{
const
git_push_update
*
expected
=
payload
;
...
...
@@ -69,7 +69,7 @@ void test_network_remote_push__delete_notification(void)
}
void
create_dummy_commit
(
git_reference
**
out
,
git_repository
*
repo
)
static
void
create_dummy_commit
(
git_reference
**
out
,
git_repository
*
repo
)
{
git_index
*
index
;
git_oid
tree_id
,
commit_id
;
...
...
tests/notes/notes.c
View file @
ca14942e
...
...
@@ -103,7 +103,7 @@ static int note_list_create_cb(
return
0
;
}
void
assert_notes_seen
(
struct
note_create_payload
payload
[],
size_t
n
)
static
void
assert_notes_seen
(
struct
note_create_payload
payload
[],
size_t
n
)
{
size_t
seen
=
0
,
i
;
...
...
tests/object/tag/write.c
View file @
ca14942e
...
...
@@ -221,7 +221,7 @@ void test_object_tag_write__deleting_with_an_invalid_name_returns_EINVALIDSPEC(v
cl_assert_equal_i
(
GIT_EINVALIDSPEC
,
git_tag_delete
(
g_repo
,
"Inv@{id"
));
}
void
create_annotation
(
git_oid
*
tag_id
,
const
char
*
name
)
static
void
create_annotation
(
git_oid
*
tag_id
,
const
char
*
name
)
{
git_object
*
target
;
git_oid
target_id
;
...
...
tests/odb/loose.c
View file @
ca14942e
...
...
@@ -187,7 +187,7 @@ void test_odb_loose__read_header(void)
test_read_header
(
&
some
);
}
void
test_write_object_permission
(
static
void
test_write_object_permission
(
mode_t
dir_mode
,
mode_t
file_mode
,
mode_t
expected_dir_mode
,
mode_t
expected_file_mode
)
{
...
...
tests/online/clone.c
View file @
ca14942e
...
...
@@ -361,7 +361,7 @@ void test_online_clone__cred_callback_called_again_on_auth_failure(void)
cl_assert_equal_i
(
3
,
counter
);
}
int
cred_default
(
static
int
cred_default
(
git_credential
**
cred
,
const
char
*
url
,
const
char
*
user_from_url
,
...
...
@@ -618,7 +618,7 @@ void test_online_clone__ssh_cannot_change_username(void)
cl_git_fail
(
git_clone
(
&
g_repo
,
"ssh://git@github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
}
int
ssh_certificate_check
(
git_cert
*
cert
,
int
valid
,
const
char
*
host
,
void
*
payload
)
static
int
ssh_certificate_check
(
git_cert
*
cert
,
int
valid
,
const
char
*
host
,
void
*
payload
)
{
git_cert_hostkey
*
key
;
git_oid
expected
=
{{
0
}},
actual
=
{{
0
}};
...
...
tests/online/push_util.c
View file @
ca14942e
...
...
@@ -10,7 +10,7 @@ void updated_tip_free(updated_tip *t)
git__free
(
t
);
}
void
push_status_free
(
push_status
*
s
)
static
void
push_status_free
(
push_status
*
s
)
{
git__free
(
s
->
ref
);
git__free
(
s
->
msg
);
...
...
tests/pack/filelimit.c
View file @
ca14942e
...
...
@@ -47,7 +47,7 @@ void test_pack_filelimit__cleanup(void)
* (README.md) has the same content in all commits, but the second one
* (file.txt) has a different content in each commit.
*/
void
create_packfile_commit
(
static
void
create_packfile_commit
(
git_repository
*
repo
,
git_oid
*
out_commit_id
,
git_oid
*
parent_id
,
...
...
tests/patch/print.c
View file @
ca14942e
...
...
@@ -9,7 +9,7 @@
* and then print a variety of patch files.
*/
void
patch_print_from_patchfile
(
const
char
*
data
,
size_t
len
)
static
void
patch_print_from_patchfile
(
const
char
*
data
,
size_t
len
)
{
git_patch
*
patch
;
git_buf
buf
=
GIT_BUF_INIT
;
...
...
tests/path/dotgit.c
View file @
ca14942e
...
...
@@ -120,7 +120,7 @@ void test_path_dotgit__dotgit_modules_symlink(void)
cl_assert_equal_b
(
false
,
git_path_is_valid
(
NULL
,
".gitmodules . .::$DATA"
,
S_IFLNK
,
GIT_PATH_REJECT_DOT_GIT_NTFS
));
}
void
test_
core_path
__git_fs_path_is_file
(
void
)
void
test_
path_dotgit
__git_fs_path_is_file
(
void
)
{
cl_git_fail
(
git_path_is_gitfile
(
"blob"
,
4
,
-
1
,
GIT_PATH_FS_HFS
));
cl_git_pass
(
git_path_is_gitfile
(
"blob"
,
4
,
GIT_PATH_GITFILE_GITIGNORE
,
GIT_PATH_FS_HFS
));
...
...
tests/path/win32.c
View file @
ca14942e
...
...
@@ -6,35 +6,27 @@
#include "win32/path_w32.h"
#endif
void
test_utf8_to_utf16
(
const
char
*
utf8_in
,
const
wchar_t
*
utf16_expected
)
{
#ifdef GIT_WIN32
static
void
test_utf8_to_utf16
(
const
char
*
utf8_in
,
const
wchar_t
*
utf16_expected
)
{
git_win32_path
path_utf16
;
int
path_utf16len
;
cl_assert
((
path_utf16len
=
git_win32_path_from_utf8
(
path_utf16
,
utf8_in
))
>=
0
);
cl_assert_equal_wcs
(
utf16_expected
,
path_utf16
);
cl_assert_equal_i
(
wcslen
(
utf16_expected
),
path_utf16len
);
#else
GIT_UNUSED
(
utf8_in
);
GIT_UNUSED
(
utf16_expected
);
#endif
}
void
test_utf8_to_utf16_relative
(
const
char
*
utf8_in
,
const
wchar_t
*
utf16_expected
)
static
void
test_utf8_to_utf16_relative
(
const
char
*
utf8_in
,
const
wchar_t
*
utf16_expected
)
{
#ifdef GIT_WIN32
git_win32_path
path_utf16
;
int
path_utf16len
;
cl_assert
((
path_utf16len
=
git_win32_path_relative_from_utf8
(
path_utf16
,
utf8_in
))
>=
0
);
cl_assert_equal_wcs
(
utf16_expected
,
path_utf16
);
cl_assert_equal_i
(
wcslen
(
utf16_expected
),
path_utf16len
);
#else
GIT_UNUSED
(
utf8_in
);
GIT_UNUSED
(
utf16_expected
);
#endif
}
#endif
void
test_path_win32__utf8_to_utf16
(
void
)
{
...
...
tests/rebase/iterator.c
View file @
ca14942e
...
...
@@ -47,7 +47,7 @@ static void test_operations(git_rebase *rebase, size_t expected_current)
}
}
void
test_iterator
(
bool
inmemory
)
static
void
test_iterator
(
bool
inmemory
)
{
git_rebase
*
rebase
;
git_rebase_options
opts
=
GIT_REBASE_OPTIONS_INIT
;
...
...
tests/rebase/merge.c
View file @
ca14942e
...
...
@@ -729,7 +729,7 @@ void test_rebase_merge__copy_notes_disabled_in_config(void)
test_copy_note
(
NULL
,
0
);
}
void
rebase_checkout_progress_cb
(
static
void
rebase_checkout_progress_cb
(
const
char
*
path
,
size_t
completed_steps
,
size_t
total_steps
,
...
...
tests/rebase/sign.c
View file @
ca14942e
...
...
@@ -86,7 +86,7 @@ committer Rebaser <rebaser@rebaser.rb> 1405694510 +0000\n";
git_rebase_free
(
rebase
);
}
int
create_cb_signed_gpg
(
static
int
create_cb_signed_gpg
(
git_oid
*
out
,
const
git_signature
*
author
,
const
git_signature
*
committer
,
...
...
tests/refs/shorthand.c
View file @
ca14942e
...
...
@@ -2,7 +2,7 @@
#include "repository.h"
void
assert_shorthand
(
git_repository
*
repo
,
const
char
*
refname
,
const
char
*
shorthand
)
static
void
assert_shorthand
(
git_repository
*
repo
,
const
char
*
refname
,
const
char
*
shorthand
)
{
git_reference
*
ref
;
...
...
tests/remote/fetch.c
View file @
ca14942e
...
...
@@ -62,7 +62,7 @@ void test_remote_fetch__cleanup(void) {
* @param force Whether to use a spec with '+' prefixed to force the refs
* to update
*/
void
do_time_travelling_fetch
(
git_oid
*
commit1id
,
git_oid
*
commit2id
,
static
void
do_time_travelling_fetch
(
git_oid
*
commit1id
,
git_oid
*
commit2id
,
bool
force
)
{
char
*
refspec_strs
=
{
force
?
FORCE_FETCHSPEC
:
NON_FORCE_FETCHSPEC
,
...
...
tests/remote/httpproxy.c
View file @
ca14942e
...
...
@@ -40,7 +40,7 @@ void test_remote_httpproxy__cleanup(void)
cl_git_sandbox_cleanup
();
}
void
assert_proxy_is
(
const
char
*
expected
)
static
void
assert_proxy_is
(
const
char
*
expected
)
{
git_remote
*
remote
;
char
*
proxy
;
...
...
@@ -57,7 +57,7 @@ void assert_proxy_is(const char *expected)
git__free
(
proxy
);
}
void
assert_config_match
(
const
char
*
config
,
const
char
*
expected
)
static
void
assert_config_match
(
const
char
*
config
,
const
char
*
expected
)
{
git_remote
*
remote
;
char
*
proxy
;
...
...
@@ -106,7 +106,7 @@ void test_remote_httpproxy__config_empty_overrides(void)
assert_config_match
(
"remote.lg2.proxy"
,
""
);
}
void
assert_global_config_match
(
const
char
*
config
,
const
char
*
expected
)
static
void
assert_global_config_match
(
const
char
*
config
,
const
char
*
expected
)
{
git_remote
*
remote
;
char
*
proxy
;
...
...
tests/stash/apply.c
View file @
ca14942e
...
...
@@ -316,7 +316,7 @@ struct seen_paths {
bool
when
;
};
int
checkout_notify
(
static
int
checkout_notify
(
git_checkout_notify_t
why
,
const
char
*
path
,
const
git_diff_file
*
baseline
,
...
...
@@ -368,7 +368,7 @@ void test_stash_apply__executes_notify_cb(void)
cl_assert_equal_b
(
true
,
seen_paths
.
when
);
}
int
progress_cb
(
static
int
progress_cb
(
git_stash_apply_progress_t
progress
,
void
*
payload
)
{
...
...
@@ -393,7 +393,7 @@ void test_stash_apply__calls_progress_cb(void)
cl_assert_equal_i
(
progress
,
GIT_STASH_APPLY_PROGRESS_DONE
);
}
int
aborting_progress_cb
(
static
int
aborting_progress_cb
(
git_stash_apply_progress_t
progress
,
void
*
payload
)
{
...
...
tests/stash/drop.c
View file @
ca14942e
...
...
@@ -140,7 +140,7 @@ void test_stash_drop__dropping_the_last_entry_removes_the_stash(void)
git_reference_lookup
(
&
stash
,
repo
,
GIT_REFS_STASH_FILE
),
GIT_ENOTFOUND
);
}
void
retrieve_top_stash_id
(
git_oid
*
out
)
static
void
retrieve_top_stash_id
(
git_oid
*
out
)
{
git_object
*
top_stash
;
...
...
tests/status/worktree.c
View file @
ca14942e
...
...
@@ -43,7 +43,7 @@ void test_status_worktree__whole_repository(void)
cl_assert_equal_i
(
0
,
counts
.
wrong_sorted_path
);
}
void
assert_show
(
static
void
assert_show
(
const
int
entry_counts
,
const
char
*
entry_paths
[],
const
unsigned
int
entry_statuses
[],
...
...
tests/submodule/modify.c
View file @
ca14942e
...
...
@@ -128,7 +128,7 @@ void test_submodule_modify__sync(void)
git_submodule_free
(
sm3
);
}
void
assert_ignore_change
(
git_submodule_ignore_t
ignore
)
static
void
assert_ignore_change
(
git_submodule_ignore_t
ignore
)
{
git_submodule
*
sm
;
...
...
@@ -146,7 +146,7 @@ void test_submodule_modify__set_ignore(void)
assert_ignore_change
(
GIT_SUBMODULE_IGNORE_ALL
);
}
void
assert_update_change
(
git_submodule_update_t
update
)
static
void
assert_update_change
(
git_submodule_update_t
update
)
{
git_submodule
*
sm
;
...
...
@@ -164,7 +164,7 @@ void test_submodule_modify__set_update(void)
assert_update_change
(
GIT_SUBMODULE_UPDATE_CHECKOUT
);
}
void
assert_recurse_change
(
git_submodule_recurse_t
recurse
)
static
void
assert_recurse_change
(
git_submodule_recurse_t
recurse
)
{
git_submodule
*
sm
;
...
...
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