2005-10-28 04:48:03 +02:00
|
|
|
#!/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
|
|
|
|
|
2005-10-28 05:59:29 +02:00
|
|
|
tmp=$(mktemp /tmp/tmp-XXXXXXXX)
|
2005-10-28 04:48:03 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2005-10-28 05:59:29 +02:00
|
|
|
if which $pgm 2>/dev/null; then
|
2005-10-28 04:48:03 +02:00
|
|
|
echo "Testing with $pgm"
|
|
|
|
sed -e "s/git-fetch-pack/$replace/g" \
|
|
|
|
-e "s/# old fails/warn/" < t5500-fetch-pack.sh > $tmp
|
|
|
|
|
|
|
|
sh $tmp || retval=$?
|
|
|
|
rm $tmp
|
|
|
|
|
|
|
|
test $retval != 0 && exit $retval
|
|
|
|
else
|
|
|
|
echo "Skipping test for $i, since I cannot find $pgm"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|