]> git.ipfire.org Git - thirdparty/git.git/blame - t/t2005-checkout-index-symlinks.sh
The third batch
[thirdparty/git.git] / t / t2005-checkout-index-symlinks.sh
CommitLineData
78a8d641
JS
1#!/bin/sh
2#
3# Copyright (c) 2007 Johannes Sixt
4#
5
5be60078 6test_description='git checkout-index on filesystem w/o symlinks test.
78a8d641 7
5be60078 8This tests that git checkout-index creates a symbolic link as a plain
78a8d641
JS
9file if core.symlinks is false.'
10
b7bcdbdb 11TEST_PASSES_SANITIZE_LEAK=true
78a8d641
JS
12. ./test-lib.sh
13
14test_expect_success \
15'preparation' '
5be60078 16git config core.symlinks false &&
6ecfd91d 17l=$(printf file | git hash-object -t blob -w --stdin) &&
5be60078 18echo "120000 $l symlink" | git update-index --index-info'
78a8d641
JS
19
20test_expect_success \
21'the checked-out symlink must be a file' '
5be60078 22git checkout-index symlink &&
78a8d641
JS
23test -f symlink'
24
4bd0785d
ÆAB
25test_expect_success 'the file must be the blob we added during the setup' '
26 echo "$l" >expect &&
27 git hash-object -t blob symlink >actual &&
28 test_cmp expect actual
29'
78a8d641
JS
30
31test_done