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
1551b1f0
Unverified
Commit
1551b1f0
authored
Feb 21, 2022
by
Edward Thomson
Committed by
GitHub
Feb 21, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6226 from libgit2/cmn/update-tips-error
remote: do store the update_tips callback error value
parents
83f2a20e
e35b5e44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
1 deletions
+42
-1
src/remote.c
+1
-1
tests/network/fetchlocal.c
+41
-0
No files found.
src/remote.c
View file @
1551b1f0
...
...
@@ -1852,7 +1852,7 @@ static int update_one_tip(
}
if
(
callbacks
&&
callbacks
->
update_tips
!=
NULL
&&
callbacks
->
update_tips
(
refname
.
ptr
,
&
old
,
&
head
->
oid
,
callbacks
->
payload
)
<
0
)
(
error
=
callbacks
->
update_tips
(
refname
.
ptr
,
&
old
,
&
head
->
oid
,
callbacks
->
payload
)
)
<
0
)
git_error_set_after_callback_function
(
error
,
"git_remote_fetch"
);
done
:
...
...
tests/network/fetchlocal.c
View file @
1551b1f0
...
...
@@ -509,3 +509,44 @@ void test_network_fetchlocal__prune_load_fetch_prune_config(void)
git_remote_free
(
origin
);
git_repository_free
(
repo
);
}
static
int
update_tips_error
(
const
char
*
ref
,
const
git_oid
*
old
,
const
git_oid
*
new
,
void
*
data
)
{
int
*
callcount
=
(
int
*
)
data
;
GIT_UNUSED
(
ref
);
GIT_UNUSED
(
old
);
GIT_UNUSED
(
new
);
(
*
callcount
)
++
;
return
-
1
;
}
void
test_network_fetchlocal__update_tips_error_is_propagated
(
void
)
{
git_repository
*
repo
;
git_reference_iterator
*
iterator
;
git_reference
*
ref
;
git_remote
*
remote
;
git_fetch_options
options
=
GIT_FETCH_OPTIONS_INIT
;
int
callcount
=
0
;
cl_git_pass
(
git_repository_init
(
&
repo
,
"foo.git"
,
true
));
cl_set_cleanup
(
cleanup_local_repo
,
"foo.git"
);
cl_git_pass
(
git_remote_create_with_fetchspec
(
&
remote
,
repo
,
"origin"
,
cl_git_fixture_url
(
"testrepo.git"
),
"+refs/heads/*:refs/remotes/update-tips/*"
));
options
.
callbacks
.
update_tips
=
update_tips_error
;
options
.
callbacks
.
payload
=
&
callcount
;
cl_git_fail
(
git_remote_fetch
(
remote
,
NULL
,
&
options
,
NULL
));
cl_assert_equal_i
(
1
,
callcount
);
cl_git_pass
(
git_reference_iterator_glob_new
(
&
iterator
,
repo
,
"refs/remotes/update-tips/**/"
));
cl_assert_equal_i
(
GIT_ITEROVER
,
git_reference_next
(
&
ref
,
iterator
));
git_reference_iterator_free
(
iterator
);
git_remote_free
(
remote
);
git_repository_free
(
repo
);
}
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