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
99d9d9a4
Commit
99d9d9a4
authored
Oct 26, 2015
by
Edward Thomson
Committed by
Edward Thomson
Nov 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge: improve test names in recursive merge tests
parent
a200bcf7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
tests/merge/trees/recursive.c
+8
-8
No files found.
tests/merge/trees/recursive.c
View file @
99d9d9a4
...
...
@@ -18,7 +18,7 @@ void test_merge_trees_recursive__cleanup(void)
cl_git_sandbox_cleanup
();
}
void
test_merge_trees_recursive__one
(
void
)
void
test_merge_trees_recursive__one
_base_commit
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -39,7 +39,7 @@ void test_merge_trees_recursive__one(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__one_norecursive
(
void
)
void
test_merge_trees_recursive__one_
base_commit_
norecursive
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -62,7 +62,7 @@ void test_merge_trees_recursive__one_norecursive(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__two
(
void
)
void
test_merge_trees_recursive__two
_base_commits
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -83,7 +83,7 @@ void test_merge_trees_recursive__two(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__two_norecursive
(
void
)
void
test_merge_trees_recursive__two_
base_commits_
norecursive
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -108,7 +108,7 @@ void test_merge_trees_recursive__two_norecursive(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__t
hree
(
void
)
void
test_merge_trees_recursive__t
wo_levels_of_multiple_bases
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -129,7 +129,7 @@ void test_merge_trees_recursive__three(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__t
hree
_norecursive
(
void
)
void
test_merge_trees_recursive__t
wo_levels_of_multiple_bases
_norecursive
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -154,7 +154,7 @@ void test_merge_trees_recursive__three_norecursive(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__
four
(
void
)
void
test_merge_trees_recursive__
three_levels_of_multiple_bases
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
@@ -175,7 +175,7 @@ void test_merge_trees_recursive__four(void)
git_index_free
(
index
);
}
void
test_merge_trees_recursive__
four
_norecursive
(
void
)
void
test_merge_trees_recursive__
three_levels_of_multiple_bases
_norecursive
(
void
)
{
git_index
*
index
;
git_merge_options
opts
=
GIT_MERGE_OPTIONS_INIT
;
...
...
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