summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-08-11 21:08:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-08-13 19:58:38 (GMT)
commit77b258f436874bdd1caecd4b3c9c63e3d49bd147 (patch)
treeb799ec38fadb810218fe97c1eeb18836318d3f95 /t
parent8fdc39729b9aaa02e89eca9d7964182a72052665 (diff)
downloadgit-77b258f436874bdd1caecd4b3c9c63e3d49bd147.zip
git-77b258f436874bdd1caecd4b3c9c63e3d49bd147.tar.gz
git-77b258f436874bdd1caecd4b3c9c63e3d49bd147.tar.bz2
t3404: fix "fake-editor"
Here-text to create fake-editor did not use <<\EOF but <<EOF, but there was no point doing so, as it quoted all the variables anyway. Simplify it. Also futureproof the special mode to edit COMMIT_EDITMSG file; it is interested in editing the COMMIT_EDITMSG file in any GIT_DIR; GIT_DIR may be given as an absolute path. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t3404-rebase-interactive.sh36
1 files changed, 19 insertions, 17 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index a9b552f..40d6799 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -61,29 +61,31 @@ test_expect_success 'setup' '
git tag I
'
-cat > fake-editor.sh << EOF
+cat > fake-editor.sh <<\EOF
#!/bin/sh
-test "\$1" = .git/COMMIT_EDITMSG && {
- test -z "\$FAKE_COMMIT_MESSAGE" || echo "\$FAKE_COMMIT_MESSAGE" > "\$1"
- test -z "\$FAKE_COMMIT_AMEND" || echo "\$FAKE_COMMIT_AMEND" >> "\$1"
+case "$1" in
+*/COMMIT_EDITMSG)
+ test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1"
+ test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1"
exit
-}
-test -z "\$EXPECT_COUNT" ||
- test "\$EXPECT_COUNT" = \$(grep -ve "^#" -e "^$" < "\$1" | wc -l) ||
+ ;;
+esac
+test -z "$EXPECT_COUNT" ||
+ test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) ||
exit
-test -z "\$FAKE_LINES" && exit
-grep -v "^#" < "\$1" > "\$1".tmp
-rm "\$1"
-cat "\$1".tmp
+test -z "$FAKE_LINES" && exit
+grep -v '^#' < "$1" > "$1".tmp
+rm -f "$1"
+cat "$1".tmp
action=pick
-for line in \$FAKE_LINES; do
- case \$line in
+for line in $FAKE_LINES; do
+ case $line in
squash)
- action="\$line";;
+ action="$line";;
*)
- echo sed -n "\${line}s/^pick/\$action/p"
- sed -n "\${line}p" < "\$1".tmp
- sed -n "\${line}s/^pick/\$action/p" < "\$1".tmp >> "\$1"
+ echo sed -n "${line}s/^pick/$action/p"
+ sed -n "${line}p" < "$1".tmp
+ sed -n "${line}s/^pick/$action/p" < "$1".tmp >> "$1"
action=pick;;
esac
done