From 9332441d8e33c3ff9900c8ddd48440846d099020 Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Fri, 14 May 2010 20:26:50 +0200 Subject: [PATCH 1/2] t6018: add tests for rev-list's --branches and --tags so that we know when they break. Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano --- t/t6018-rev-list-glob.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/t/t6018-rev-list-glob.sh b/t/t6018-rev-list-glob.sh index 8d3fa7d01..dbedc4dfa 100755 --- a/t/t6018-rev-list-glob.sh +++ b/t/t6018-rev-list-glob.sh @@ -162,6 +162,13 @@ test_expect_success 'rev-list --branches=subspace' ' compare rev-list "subspace/one subspace/two" "--branches=subspace" ' + +test_expect_success 'rev-list --branches' ' + + compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches" + +' + test_expect_success 'rev-list --glob=heads/someref/* master' ' compare rev-list "master" "--glob=heads/someref/* master" @@ -186,6 +193,12 @@ test_expect_success 'rev-list --tags=foo' ' ' +test_expect_success 'rev-list --tags' ' + + compare rev-list "foo/bar" "--tags" + +' + test_expect_success 'rev-list --remotes=foo' ' compare rev-list "foo/baz" "--remotes=foo" From 52663475a97ecf15b52bee742f3c3a864f3e5fff Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Fri, 14 May 2010 20:26:51 +0200 Subject: [PATCH 2/2] t6018: make sure all tested symbolic names are different revs Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano --- t/t6018-rev-list-glob.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/t6018-rev-list-glob.sh b/t/t6018-rev-list-glob.sh index dbedc4dfa..58428d9f5 100755 --- a/t/t6018-rev-list-glob.sh +++ b/t/t6018-rev-list-glob.sh @@ -34,7 +34,9 @@ test_expect_success 'setup' ' git checkout master && commit master2 && git tag foo/bar master && - git update-ref refs/remotes/foo/baz master + commit master3 && + git update-ref refs/remotes/foo/baz master && + commit master4 ' test_expect_success 'rev-parse --glob=refs/heads/subspace/*' '