On Wed, Dec 19, 2007 at 10:15:15AM +0100, Marco Roeland wrote: > This is a regression in 'next', introduced on Nov 4th by commit 94362599 > "Migrate git-clone to use git-rev-parse --parseopt". Added Kristian as > he works on the builtin version; perhaps nice for a test case (!). Here is a test case that catches this regression. It can perhaps be expanded by Kristian to test other options, but is probably worth adding now as a basic sanity check. I put the test in 5702. There seems to be a '5600' clone test, as well, which perhaps should be in the 57?? series. -- >8 -- test "git clone -o" This tests a recently fixed regression in which "git clone -o" didn't work at all. Signed-off-by: Jeff King <peff@xxxxxxxx> --- t/t5702-clone-options.sh | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) create mode 100755 t/t5702-clone-options.sh diff --git a/t/t5702-clone-options.sh b/t/t5702-clone-options.sh new file mode 100755 index 0000000..328e4d9 --- /dev/null +++ b/t/t5702-clone-options.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +test_description='basic clone options' +. ./test-lib.sh + +test_expect_success 'setup' ' + + mkdir parent && + (cd parent && git init && + echo one >file && git add file && + git commit -m one) + +' + +test_expect_success 'clone -o' ' + + git clone -o foo parent clone-o && + (cd clone-o && git rev-parse --verify refs/remotes/foo/master) + +' + +test_done -- 1.5.4.rc0.1162.gaa83ae - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html