diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-09 09:01:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-09 09:01:52 -0700 |
commit | 967abba7169ad10eff841fe32b70f3e7a1126b63 (patch) | |
tree | 55a4ad3740e322b4dc47adb5c73d0888c07e74bc /t/t9300-fast-import.sh | |
parent | ee02c2ab379dd25451199938788212414bcdf156 (diff) | |
parent | ad78585eeebd8d5ac596ad4f06f549734ce9d870 (diff) | |
download | git-967abba7169ad10eff841fe32b70f3e7a1126b63.tar.gz |
Merge branch 'vr/use-our-perl-in-tests'
Some implementations of Perl terminates "lines" with CRLF even when
the script is operating on just a sequence of bytes. Make sure to
use "$PERL_PATH", the version of Perl the user told Git to use, in
our tests to avoid unnecessary breakages in tests.
* vr/use-our-perl-in-tests:
t/README: add a bit more Don'ts
tests: enclose $PERL_PATH in double quotes
t/test-lib.sh: export PERL_PATH for use in scripts
t: Replace 'perl' by $PERL_PATH
Diffstat (limited to 't/t9300-fast-import.sh')
-rwxr-xr-x | t/t9300-fast-import.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9300-fast-import.sh b/t/t9300-fast-import.sh index c17f52e586..2fcf269469 100755 --- a/t/t9300-fast-import.sh +++ b/t/t9300-fast-import.sh @@ -12,7 +12,7 @@ test_description='test git fast-import utility' # This could be written as "head -c $1", but IRIX "head" does not # support the -c option. head_c () { - perl -e ' + "$PERL_PATH" -e ' my $len = $ARGV[1]; while ($len > 0) { my $s; |