2009-01-10 06:21:36 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='git apply --numstat - <patch'
|
|
|
|
|
2021-10-30 22:24:18 +00:00
|
|
|
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
2009-01-10 06:21:36 +00:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
echo hello >text &&
|
|
|
|
git add text &&
|
|
|
|
echo goodbye >text &&
|
|
|
|
git diff >patch
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git apply --numstat - < patch' '
|
|
|
|
echo "1 1 text" >expect &&
|
|
|
|
git apply --numstat - <patch >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git apply --numstat - < patch patch' '
|
2021-12-09 05:11:04 +00:00
|
|
|
cat >expect <<-\EOF &&
|
|
|
|
1 1 text
|
|
|
|
1 1 text
|
|
|
|
EOF
|
2009-01-10 06:21:36 +00:00
|
|
|
git apply --numstat - < patch patch >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|