2007-03-02 22:11:30 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Johannes Sixt
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git update-index on filesystem w/o symlinks test.
|
2007-03-02 22:11:30 +01:00
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
This tests that git update-index keeps the symbolic link property
|
2007-03-02 22:11:30 +01:00
|
|
|
even if a plain file is in the working tree if core.symlinks is false.'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'preparation' '
|
2007-07-03 07:52:14 +02:00
|
|
|
git config core.symlinks false &&
|
2008-10-31 06:09:13 +01:00
|
|
|
l=$(printf file | git hash-object -t blob -w --stdin) &&
|
2007-07-03 07:52:14 +02:00
|
|
|
echo "120000 $l symlink" | git update-index --index-info'
|
2007-03-02 22:11:30 +01:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'modify the symbolic link' '
|
2008-10-31 06:09:13 +01:00
|
|
|
printf new-file > symlink &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-index symlink'
|
2007-03-02 22:11:30 +01:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'the index entry must still be a symbolic link' '
|
2007-07-03 07:52:14 +02:00
|
|
|
case "`git ls-files --stage --cached symlink`" in
|
2010-06-24 19:44:49 +02:00
|
|
|
120000" "*symlink) echo pass;;
|
2007-07-03 07:52:14 +02:00
|
|
|
*) echo fail; git ls-files --stage --cached symlink; (exit 1);;
|
2007-03-02 22:11:30 +01:00
|
|
|
esac'
|
|
|
|
|
|
|
|
test_done
|