2005-05-26 01:00:04 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='Test mode change diffs.
|
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2012-05-01 19:10:12 +02:00
|
|
|
sed_script='s/\(:100644 100755\) \('"$_x40"'\) \2 /\1 X X /'
|
2005-05-26 01:00:04 +02:00
|
|
|
|
2012-05-01 19:10:12 +02:00
|
|
|
test_expect_success 'setup' '
|
|
|
|
echo frotz >rezrov &&
|
|
|
|
git update-index --add rezrov &&
|
|
|
|
tree=`git write-tree` &&
|
|
|
|
echo $tree
|
|
|
|
'
|
2005-05-26 01:00:04 +02:00
|
|
|
|
2012-05-01 19:10:12 +02:00
|
|
|
test_expect_success 'chmod' '
|
|
|
|
test_chmod +x rezrov &&
|
|
|
|
git diff-index $tree >current &&
|
|
|
|
sed -e "$sed_script" <current >check &&
|
|
|
|
echo ":100644 100755 X X M rezrov" >expected &&
|
|
|
|
test_cmp expected check
|
|
|
|
'
|
2005-05-26 01:00:04 +02:00
|
|
|
|
2012-05-01 19:10:13 +02:00
|
|
|
test_expect_success 'prepare binary file' '
|
|
|
|
git commit -m rezrov &&
|
2012-05-02 09:36:44 +02:00
|
|
|
printf "\00\01\02\03\04\05\06" >binbin &&
|
2012-05-01 19:10:13 +02:00
|
|
|
git add binbin &&
|
|
|
|
git commit -m binbin
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--stat output after text chmod' '
|
|
|
|
test_chmod -x rezrov &&
|
|
|
|
echo " 0 files changed" >expect &&
|
|
|
|
git diff HEAD --stat >actual &&
|
2012-08-27 07:36:51 +02:00
|
|
|
test_i18ncmp expect actual
|
2012-05-01 19:10:13 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--shortstat output after text chmod' '
|
|
|
|
git diff HEAD --shortstat >actual &&
|
2012-08-27 07:36:51 +02:00
|
|
|
test_i18ncmp expect actual
|
2012-05-01 19:10:13 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--stat output after binary chmod' '
|
|
|
|
test_chmod +x binbin &&
|
2012-05-01 19:10:14 +02:00
|
|
|
echo " 0 files changed" >expect &&
|
2012-05-01 19:10:13 +02:00
|
|
|
git diff HEAD --stat >actual &&
|
2012-08-27 07:36:51 +02:00
|
|
|
test_i18ncmp expect actual
|
2012-05-01 19:10:13 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--shortstat output after binary chmod' '
|
|
|
|
git diff HEAD --shortstat >actual &&
|
2012-08-27 07:36:51 +02:00
|
|
|
test_i18ncmp expect actual
|
2012-05-01 19:10:13 +02:00
|
|
|
'
|
|
|
|
|
2005-05-26 01:00:04 +02:00
|
|
|
test_done
|