2008-09-18 22:01:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='respect crlf in git archive'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
2013-01-06 18:49:00 +01:00
|
|
|
|
2008-09-18 22:01:13 +02:00
|
|
|
test_expect_success setup '
|
|
|
|
|
2010-10-31 02:46:54 +01:00
|
|
|
git config core.autocrlf true &&
|
2008-09-18 22:01:13 +02:00
|
|
|
|
|
|
|
printf "CRLF line ending\r\nAnd another\r\n" > sample &&
|
|
|
|
git add sample &&
|
|
|
|
|
|
|
|
test_tick &&
|
|
|
|
git commit -m Initial
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'tar archive' '
|
|
|
|
|
|
|
|
git archive --format=tar HEAD |
|
2010-10-31 02:46:54 +01:00
|
|
|
( mkdir untarred && cd untarred && "$TAR" -xf - ) &&
|
2008-09-18 22:01:13 +02:00
|
|
|
|
|
|
|
test_cmp sample untarred/sample
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2009-03-16 14:44:56 +01:00
|
|
|
test_expect_success UNZIP 'zip archive' '
|
2008-09-18 22:01:13 +02:00
|
|
|
|
|
|
|
git archive --format=zip HEAD >test.zip &&
|
|
|
|
|
2013-01-06 18:47:57 +01:00
|
|
|
( mkdir unzipped && cd unzipped && "$GIT_UNZIP" ../test.zip ) &&
|
2008-09-18 22:01:13 +02:00
|
|
|
|
|
|
|
test_cmp sample unzipped/sample
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|