Some of the svn related tests would break when the git root path had spaces in it. The test checks in t/t9119-git-svn-info.sh where falsely assuming that the only space where in the path of the generated subversion repository. This will break when the actual git build repository has spaces in it. Add a global modifier to the sed command that generates the expected value for the tests. Signed-off-by: Carl Michael Skog <cmskog@xxxxxxxxx> --- t/t9119-git-svn-info.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/t9119-git-svn-info.sh b/t/t9119-git-svn-info.sh index ff19695..752bf26 100755 --- a/t/t9119-git-svn-info.sh +++ b/t/t9119-git-svn-info.sh @@ -28,7 +28,7 @@ test_cmp_info () { rm -f tmp.expect tmp.actual } -quoted_svnrepo="$(echo $svnrepo | sed 's/ /%20/')" +quoted_svnrepo="$(echo $svnrepo | sed 's/ /%20/g')" test_expect_success 'setup repository and import' ' mkdir info && -- 1.7.4.1.99.g3d9132 -- 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