2012-05-16 22:28:31 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='diff --no-index'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
mkdir a &&
|
|
|
|
mkdir b &&
|
|
|
|
echo 1 >a/1 &&
|
2012-06-22 02:09:50 +08:00
|
|
|
echo 2 >a/2 &&
|
|
|
|
git init repo &&
|
|
|
|
echo 1 >repo/a &&
|
|
|
|
mkdir -p non/git &&
|
|
|
|
echo 1 >non/git/a &&
|
|
|
|
echo 1 >non/git/b
|
2012-05-16 22:28:31 +08:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git diff --no-index directories' '
|
|
|
|
git diff --no-index a b >cnt
|
|
|
|
test $? = 1 && test_line_count = 14 cnt
|
|
|
|
'
|
|
|
|
|
2012-06-22 02:09:50 +08:00
|
|
|
test_expect_success 'git diff --no-index relative path outside repo' '
|
|
|
|
(
|
|
|
|
cd repo &&
|
|
|
|
test_expect_code 0 git diff --no-index a ../non/git/a &&
|
|
|
|
test_expect_code 0 git diff --no-index ../non/git/a ../non/git/b
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-12-11 17:58:43 +08:00
|
|
|
test_expect_success 'git diff --no-index with broken index' '
|
|
|
|
(
|
|
|
|
cd repo &&
|
|
|
|
echo broken >.git/index &&
|
|
|
|
git diff --no-index a ../non/git/a
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git diff outside repo with broken index' '
|
|
|
|
(
|
|
|
|
cd repo &&
|
|
|
|
git diff ../non/git/a ../non/git/b
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2012-05-16 22:28:31 +08:00
|
|
|
test_done
|