2008-03-02 09:07:59 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='difference in submodules'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
2008-08-08 11:26:28 +02:00
|
|
|
. "$TEST_DIRECTORY"/diff-lib.sh
|
2008-03-02 09:07:59 +01:00
|
|
|
|
|
|
|
_z40=0000000000000000000000000000000000000000
|
|
|
|
test_expect_success setup '
|
|
|
|
test_tick &&
|
|
|
|
test_create_repo sub &&
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
echo hello >world &&
|
|
|
|
git add world &&
|
|
|
|
git commit -m submodule
|
|
|
|
) &&
|
|
|
|
|
|
|
|
test_tick &&
|
|
|
|
echo frotz >nitfol &&
|
|
|
|
git add nitfol sub &&
|
|
|
|
git commit -m superproject &&
|
|
|
|
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
echo goodbye >world &&
|
|
|
|
git add world &&
|
|
|
|
git commit -m "submodule #2"
|
|
|
|
) &&
|
|
|
|
|
|
|
|
set x $(
|
|
|
|
cd sub &&
|
|
|
|
git rev-list HEAD
|
|
|
|
) &&
|
|
|
|
echo ":160000 160000 $3 $_z40 M sub" >expect
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git diff --raw HEAD' '
|
|
|
|
git diff --raw --abbrev=40 HEAD >actual &&
|
2008-03-12 22:36:36 +01:00
|
|
|
test_cmp expect actual
|
2008-03-02 09:07:59 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git diff-index --raw HEAD' '
|
|
|
|
git diff-index --raw HEAD >actual.index &&
|
2008-03-12 22:36:36 +01:00
|
|
|
test_cmp expect actual.index
|
2008-03-02 09:07:59 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git diff-files --raw' '
|
|
|
|
git diff-files --raw >actual.files &&
|
2008-03-12 22:36:36 +01:00
|
|
|
test_cmp expect actual.files
|
2008-03-02 09:07:59 +01:00
|
|
|
'
|
|
|
|
|
2008-05-04 02:04:42 +02:00
|
|
|
test_expect_success 'git diff (empty submodule dir)' '
|
2008-05-02 15:35:33 +02:00
|
|
|
: >empty &&
|
|
|
|
rm -rf sub/* sub/.git &&
|
|
|
|
git diff > actual.empty &&
|
|
|
|
test_cmp empty actual.empty
|
|
|
|
'
|
|
|
|
|
2008-03-02 09:07:59 +01:00
|
|
|
test_done
|