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
e60af904
Commit
e60af904
authored
Aug 09, 2012
by
Joshua Peek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test trailing space after ref oid
parent
6ab68290
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
6 deletions
+19
-6
tests-clar/network/remotelocal.c
+2
-2
tests-clar/refs/branches/foreach.c
+2
-2
tests-clar/refs/foreachglob.c
+2
-2
tests-clar/refs/read.c
+12
-0
tests-clar/resources/testrepo.git/refs/heads/trailing
+1
-0
No files found.
tests-clar/network/remotelocal.c
View file @
e60af904
...
...
@@ -107,7 +107,7 @@ void test_network_remotelocal__retrieve_advertised_references(void)
cl_git_pass
(
git_remote_ls
(
remote
,
&
count_ref__cb
,
&
how_many_refs
));
cl_assert_equal_i
(
how_many_refs
,
2
4
);
cl_assert_equal_i
(
how_many_refs
,
2
5
);
}
void
test_network_remotelocal__retrieve_advertised_references_from_spaced_repository
(
void
)
...
...
@@ -121,7 +121,7 @@ void test_network_remotelocal__retrieve_advertised_references_from_spaced_reposi
cl_git_pass
(
git_remote_ls
(
remote
,
&
count_ref__cb
,
&
how_many_refs
));
cl_assert_equal_i
(
how_many_refs
,
2
4
);
cl_assert_equal_i
(
how_many_refs
,
2
5
);
git_remote_free
(
remote
);
/* Disconnect from the "spaced repo" before the cleanup */
remote
=
NULL
;
...
...
tests-clar/refs/branches/foreach.c
View file @
e60af904
...
...
@@ -47,7 +47,7 @@ static void assert_retrieval(unsigned int flags, unsigned int expected_count)
void
test_refs_branches_foreach__retrieve_all_branches
(
void
)
{
assert_retrieval
(
GIT_BRANCH_LOCAL
|
GIT_BRANCH_REMOTE
,
1
2
);
assert_retrieval
(
GIT_BRANCH_LOCAL
|
GIT_BRANCH_REMOTE
,
1
3
);
}
void
test_refs_branches_foreach__retrieve_remote_branches
(
void
)
...
...
@@ -57,7 +57,7 @@ void test_refs_branches_foreach__retrieve_remote_branches(void)
void
test_refs_branches_foreach__retrieve_local_branches
(
void
)
{
assert_retrieval
(
GIT_BRANCH_LOCAL
,
1
0
);
assert_retrieval
(
GIT_BRANCH_LOCAL
,
1
1
);
}
struct
expectations
{
...
...
tests-clar/refs/foreachglob.c
View file @
e60af904
...
...
@@ -46,7 +46,7 @@ static void assert_retrieval(const char *glob, unsigned int flags, int expected_
void
test_refs_foreachglob__retrieve_all_refs
(
void
)
{
/* 8 heads (including one packed head) + 1 note + 2 remotes + 6 tags */
assert_retrieval
(
"*"
,
GIT_REF_LISTALL
,
19
);
assert_retrieval
(
"*"
,
GIT_REF_LISTALL
,
20
);
}
void
test_refs_foreachglob__retrieve_remote_branches
(
void
)
...
...
@@ -56,7 +56,7 @@ void test_refs_foreachglob__retrieve_remote_branches(void)
void
test_refs_foreachglob__retrieve_local_branches
(
void
)
{
assert_retrieval
(
"refs/heads/*"
,
GIT_REF_LISTALL
,
1
0
);
assert_retrieval
(
"refs/heads/*"
,
GIT_REF_LISTALL
,
1
1
);
}
void
test_refs_foreachglob__retrieve_partially_named_references
(
void
)
...
...
tests-clar/refs/read.c
View file @
e60af904
...
...
@@ -205,6 +205,18 @@ void test_refs_read__chomped(void)
git_reference_free
(
chomped
);
}
void
test_refs_read__trailing
(
void
)
{
git_reference
*
test
,
*
trailing
;
cl_git_pass
(
git_reference_lookup
(
&
test
,
g_repo
,
"refs/heads/test"
));
cl_git_pass
(
git_reference_lookup
(
&
trailing
,
g_repo
,
"refs/heads/trailing"
));
cl_git_pass
(
git_oid_cmp
(
git_reference_oid
(
test
),
git_reference_oid
(
trailing
)));
git_reference_free
(
test
);
git_reference_free
(
trailing
);
}
void
test_refs_read__unfound_return_ENOTFOUND
(
void
)
{
git_reference
*
reference
;
...
...
tests-clar/resources/testrepo.git/refs/heads/trailing
0 → 100644
View file @
e60af904
e90810b8df3e80c413d903f631643c716887138d
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