t0300: use write_script helper

t0300 creates some helper shell scripts, and marks them with
"!/bin/sh". Even though the scripts are fairly simple, they
can fail on broken shells (specifically, Solaris /bin/sh
will persist a temporary assignment to IFS in a "read"
command).

Rather than work around the problem for Solaris /bin/sh,
using write_script will make sure we point to a known-good
shell that the user has given us.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2012-02-04 01:30:18 -05:00 committed by Junio C Hamano
parent 840c519d7e
commit 3d9f5b674f

View File

@ -14,22 +14,18 @@ test_expect_success 'setup helper scripts' '
done done
EOF EOF
cat >git-credential-useless <<-\EOF && write_script git-credential-useless <<-\EOF &&
#!/bin/sh
. ./dump . ./dump
exit 0 exit 0
EOF EOF
chmod +x git-credential-useless &&
cat >git-credential-verbatim <<-\EOF && write_script git-credential-verbatim <<-\EOF &&
#!/bin/sh
user=$1; shift user=$1; shift
pass=$1; shift pass=$1; shift
. ./dump . ./dump
test -z "$user" || echo username=$user test -z "$user" || echo username=$user
test -z "$pass" || echo password=$pass test -z "$pass" || echo password=$pass
EOF EOF
chmod +x git-credential-verbatim &&
PATH="$PWD:$PATH" PATH="$PWD:$PATH"
' '