Win32: fix detection of empty directories in is_dir_empty
[git/dscho.git] / t / t9139-git-svn-non-utf8-commitencoding.sh
blob22d80b0be2b94515132a79401b719f98794f4616
1 #!/bin/sh
3 # Copyright (c) 2009 Eric Wong
5 test_description='git svn refuses to dcommit non-UTF8 messages'
7 . ./lib-git-svn.sh
9 # ISO-2022-JP can pass for valid UTF-8, so skipping that in this test
11 for H in ISO8859-1 eucJP
13 test_expect_success "$H setup" '
14 mkdir $H &&
15 svn_cmd import -m "$H test" $H "$svnrepo"/$H &&
16 git svn clone "$svnrepo"/$H $H
18 done
20 for H in ISO8859-1 eucJP
22 test_expect_success "$H commit on git side" '
24 cd $H &&
25 git config i18n.commitencoding $H &&
26 git checkout -b t refs/remotes/git-svn &&
27 echo $H >F &&
28 git add F &&
29 git commit -a -F "$TEST_DIRECTORY"/t3900/$H.txt &&
30 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
31 test "z$E" = "z$H"
34 done
36 for H in ISO8859-1 eucJP
38 test_expect_success "$H dcommit to svn" '
40 cd $H &&
41 git config --unset i18n.commitencoding &&
42 test_must_fail git svn dcommit
45 done
47 test_done