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
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'setup' \
|
|
|
|
'echo frotz >rezrov &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-index --add rezrov &&
|
|
|
|
tree=`git write-tree` &&
|
2005-05-26 01:00:04 +02:00
|
|
|
echo $tree'
|
|
|
|
|
2009-02-28 21:12:57 +01:00
|
|
|
test_expect_success \
|
|
|
|
'chmod' \
|
|
|
|
'test_chmod +x rezrov &&
|
|
|
|
git diff-index $tree >current'
|
2005-05-26 01:00:04 +02:00
|
|
|
|
|
|
|
sed -e 's/\(:100644 100755\) \('"$_x40"'\) \2 /\1 X X /' <current >check
|
|
|
|
echo ":100644 100755 X X M rezrov" >expected
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'verify' \
|
2008-05-24 07:28:56 +02:00
|
|
|
'test_cmp expected check'
|
2005-05-26 01:00:04 +02:00
|
|
|
|
|
|
|
test_done
|