Avoid ActiveState Perl IO in t800[12]

Use sed instead, it comes with cygwin and there is almost no chance of
someone installing a sed with default CRLF lineendings by accident.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Alex Riesen 2007-02-05 14:04:09 +01:00 committed by Junio C Hamano
parent 451fd65a8e
commit 563b43ee45

View file

@ -113,7 +113,8 @@ test_expect_success \
test_expect_success \
'some edit' \
'perl -p -i.orig -e "s/^1A.*\n$//; s/^3A/99/" file &&
'mv file file.orig &&
sed -e "s/^3A/99/" -e "/^1A/d" < file.orig > file &&
GIT_AUTHOR_NAME="D" git commit -a -m "edit"'
test_expect_success \