diff options
| author | Junio C Hamano <gitster@pobox.com> | 2008-05-14 13:45:16 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2008-05-14 13:45:16 -0700 |
| commit | 761adeb4dba3305d0810b5340a71783d29484fb0 (patch) | |
| tree | 4fb32f9d426394e845354e00553988a0f63003a3 /t/t9112-git-svn-md5less-file.sh | |
| parent | Merge branch 'mv/format-cc' (diff) | |
| parent | Rename the test trash directory to contain spaces. (diff) | |
| download | git-761adeb4dba3305d0810b5340a71783d29484fb0.tar.gz git-761adeb4dba3305d0810b5340a71783d29484fb0.zip | |
Merge branch 'bd/tests'
* bd/tests:
Rename the test trash directory to contain spaces.
Fix tests breaking when checkout path contains shell metacharacters
Don't use the 'export NAME=value' in the test scripts.
lib-git-svn.sh: Fix quoting issues with paths containing shell metacharacters
test-lib.sh: Fix some missing path quoting
Use test_set_editor in t9001-send-email.sh
test-lib.sh: Add a test_set_editor function to safely set $VISUAL
git-send-email.perl: Handle shell metacharacters in $EDITOR properly
config.c: Escape backslashes in section names properly
git-rebase.sh: Fix --merge --abort failures when path contains whitespace
Conflicts:
t/t9115-git-svn-dcommit-funky-renames.sh
Diffstat (limited to 't/t9112-git-svn-md5less-file.sh')
| -rwxr-xr-x | t/t9112-git-svn-md5less-file.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9112-git-svn-md5less-file.sh b/t/t9112-git-svn-md5less-file.sh index 646a5f0cdb..d470a920e4 100755 --- a/t/t9112-git-svn-md5less-file.sh +++ b/t/t9112-git-svn-md5less-file.sh @@ -40,8 +40,8 @@ PROPS-END EOF -test_expect_success 'load svn dumpfile' "svnadmin load $rawsvnrepo < dumpfile.svn" +test_expect_success 'load svn dumpfile' 'svnadmin load "$rawsvnrepo" < dumpfile.svn' -test_expect_success 'initialize git-svn' "git-svn init $svnrepo" +test_expect_success 'initialize git-svn' 'git-svn init "$svnrepo"' test_expect_success 'fetch revisions from svn' 'git-svn fetch' test_done |
