aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-03-11 21:40:47 -0700
committerJunio C Hamano <gitster@pobox.com>2008-03-11 21:40:47 -0700
commitb81a7b58875e07d7e82aafced1de9834ba1ef94a (patch)
tree47a7e33fdbd718fce1948183e1905a174c43fa40 /t
parent5d921e2931e5041884d8f86fdccc9004a7b071cc (diff)
parentea14e6c55427f50f78fe47187cd4edb9845943a1 (diff)
downloadgit-b81a7b58875e07d7e82aafced1de9834ba1ef94a.tar.gz
git-b81a7b58875e07d7e82aafced1de9834ba1ef94a.tar.xz
Merge branch 'maint'
* maint: git-svn: fix find-rev error message when missing arg t0021: tr portability fix for Solaris launch_editor(): allow spaces in the filename git rebase --abort: always restore the right commit
Diffstat (limited to 't')
-rwxr-xr-xt/t0021-conversion.sh4
-rwxr-xr-xt/t7005-editor.sh27
2 files changed, 30 insertions, 1 deletions
diff --git a/t/t0021-conversion.sh b/t/t0021-conversion.sh
index cb860296e..8fc39d77c 100755
--- a/t/t0021-conversion.sh
+++ b/t/t0021-conversion.sh
@@ -5,7 +5,9 @@ test_description='blob conversion via gitattributes'
. ./test-lib.sh
cat <<\EOF >rot13.sh
-tr '[a-zA-Z]' '[n-za-mN-ZA-M]'
+tr \
+ 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' \
+ 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM'
EOF
chmod +x rot13.sh
diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh
index c1cec5530..6a74b3acf 100755
--- a/t/t7005-editor.sh
+++ b/t/t7005-editor.sh
@@ -89,6 +89,33 @@ do
'
done
+test_expect_success 'editor with a space' '
+
+ if echo "echo space > \"\$1\"" > "e space.sh"
+ then
+ chmod a+x "e space.sh" &&
+ GIT_EDITOR="./e\ space.sh" git commit --amend &&
+ test space = "$(git show -s --pretty=format:%s)"
+ else
+ say "Skipping; FS does not support spaces in filenames"
+ fi
+
+'
+
+unset GIT_EDITOR
+test_expect_success 'core.editor with a space' '
+
+ if test -f "e space.sh"
+ then
+ git config core.editor \"./e\ space.sh\" &&
+ git commit --amend &&
+ test space = "$(git show -s --pretty=format:%s)"
+ else
+ say "Skipping; FS does not support spaces in filenames"
+ fi
+
+'
+
TERM="$OLD_TERM"
test_done