Commit b4ef67d5ebc55943073d7baacd91f46c20d9ccf4

Carlos Martín Nieto 2014-02-01T15:11:00

revwalk: add a failing test for pushing "tags" This shows that pusing a whole namespace can be problematic.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/tests/revwalk/basic.c b/tests/revwalk/basic.c
index 6d55aed..4621ab8 100644
--- a/tests/revwalk/basic.c
+++ b/tests/revwalk/basic.c
@@ -252,3 +252,13 @@ void test_revwalk_basic__push_range(void)
 	cl_git_pass(git_revwalk_push_range(_walk, "9fd738e~2..9fd738e"));
 	cl_git_pass(test_walk_only(_walk, commit_sorting_segment, 1));
 }
+
+void test_revwalk_basic__push_mixed(void)
+{
+	revwalk_basic_setup_walk(NULL);
+
+	git_revwalk_reset(_walk);
+	git_revwalk_sorting(_walk, 0);
+	cl_git_pass(git_revwalk_push_glob(_walk, "tags"));
+	cl_git_pass(test_walk_only(_walk, commit_sorting_segment, 1));
+}