2005-06-22 09:30:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
2007-07-03 05:52:14 +00:00
|
|
|
test_description='git apply --stat --summary test.
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'rename' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-1.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-1.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'copy' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-2.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-2.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'rewrite' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-3.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-3.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'mode' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-4.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-4.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'non git' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-5.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-5.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'non git' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-6.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-6.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'non git' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git apply --stat --summary <../t4100/t-apply-7.patch >current &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp ../t4100/t-apply-7.expect current'
|
2005-06-22 09:30:47 +00:00
|
|
|
|
|
|
|
test_done
|