On Mon, Jan 23, 2012 at 10:40 PM, Pete Wyckoff <pw@xxxxxxxx> wrote: > How about taking what's below and just squashing it in. It's > incremental on your changes and would go well with Luke's series > that fixes a bunch of scattered quoting issues similarly. > > The change to "describe %s" is unnecessary, but makes all the > invocations look similar. You can leave it out. I've squashed your patch, but kept the "describe %s" fix in a separate commit. >> BTW, and on an unrelated topic, are any test cases failing on your side? > > I do run the tests regularly, and your series is good. There's > the 'clone --use-client-spec' one that is broken until my > 2ea09b5 (git-p4: adjust test to adhere to stricter useClientSpec, > 2012-01-11) is merged. It's on pu. Tests in t9809-git-p4-client-view.sh were failing for me because I'm using dash instead of bash. Please check patch below for a fix. Test 15 of t9800-git-p4-basic.sh is still failing and I've not been able to pinpoint the problem. I can send you the logs off-list, if you want. Thanks, Vitor diff --git a/t/t9809-git-p4-client-view.sh b/t/t9809-git-p4-client-view.sh index c9471d5..5b0ad99 100755 --- a/t/t9809-git-p4-client-view.sh +++ b/t/t9809-git-p4-client-view.sh @@ -31,7 +31,7 @@ client_view() { # check_files_exist() { ok=0 && - num=${#@} && + num=$# && for arg ; do test_path_is_file "$arg" && ok=$(($ok + 1)) -- 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