aboutsummaryrefslogtreecommitdiff
path: root/t/t5501-old-fetch-and-upload.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-12 13:24:04 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-12 13:24:04 -0700
commit3103c005207f0840782804b9387b3a831005bb9c (patch)
tree51d1c31f842c5f56e3dd42eeb9ca0980e716853c /t/t5501-old-fetch-and-upload.sh
parent8bc7574b6332ef45645c6e0917e9d59919b277ef (diff)
parentf4ee3eb68906f079dea45de4f1bbb03d68189eb3 (diff)
downloadgit-3103c005207f0840782804b9387b3a831005bb9c.tar.gz
git-3103c005207f0840782804b9387b3a831005bb9c.tar.xz
Merge branch 'master' into jc/combine
* master: stripspace: make sure not to leave an incomplete line. git-commit: do not muck with commit message when no_edit is set. When showing a commit message, do not lose an incomplete line. Retire t5501-old-fetch-and-upload test.
Diffstat (limited to 't/t5501-old-fetch-and-upload.sh')
-rwxr-xr-xt/t5501-old-fetch-and-upload.sh48
1 files changed, 0 insertions, 48 deletions
diff --git a/t/t5501-old-fetch-and-upload.sh b/t/t5501-old-fetch-and-upload.sh
deleted file mode 100755
index 596c88b1c..000000000
--- a/t/t5501-old-fetch-and-upload.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2005 Johannes Schindelin
-#
-
-# Test that the current fetch-pack/upload-pack plays nicely with
-# an old counterpart
-
-cd $(dirname $0) || exit 1
-: ${SHELL_PATH=/bin/sh}
-
-tmp=`pwd`/.tmp$$
-
-retval=0
-
-if [ -z "$1" ]; then
- list="fetch upload"
-else
- list="$@"
-fi
-
-for i in $list; do
- case "$i" in
- fetch) pgm="old-git-fetch-pack"; replace="$pgm";;
- upload) pgm="old-git-upload-pack"; replace="git-fetch-pack --exec=$pgm";;
- both) pgm="old-git-upload-pack"; replace="old-git-fetch-pack --exec=$pgm";;
- esac
-
- if where=`LANG=C LC_ALL=C which "$pgm" 2>/dev/null` &&
- case "$where" in
- "no "*) (exit 1) ;;
- esac
- then
- echo "Testing with $pgm"
- sed -e "s/git-fetch-pack/$replace/g" \
- -e "s/# old fails/warn/" < t5500-fetch-pack.sh > $tmp
-
- "$SHELL_PATH" "$tmp" || retval=$?
- rm -f "$tmp"
-
- test $retval != 0 && exit $retval
- else
- echo "Skipping test for $i, since I cannot find $pgm"
- fi
-done
-
-exit 0
-