]> git.ipfire.org Git - thirdparty/git.git/blame - t/t2002-checkout-cache-u.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t2002-checkout-cache-u.sh
CommitLineData
415e96c8
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
5be60078 6test_description='git checkout-index -u test.
415e96c8 7
5be60078
JH
8With -u flag, git checkout-index internally runs the equivalent of
9git update-index --refresh on the checked out entry.'
415e96c8
JH
10
11. ./test-lib.sh
12
13test_expect_success \
14'preparation' '
15echo frotz >path0 &&
5be60078
JH
16git update-index --add path0 &&
17t=$(git write-tree)'
415e96c8 18
41ac414e 19test_expect_success \
5be60078 20'without -u, git checkout-index smudges stat information.' '
415e96c8 21rm -f path0 &&
5be60078
JH
22git read-tree $t &&
23git checkout-index -f -a &&
97ad535b 24test_must_fail git diff-files --exit-code'
415e96c8
JH
25
26test_expect_success \
5be60078 27'with -u, git checkout-index picks up stat information from new files.' '
415e96c8 28rm -f path0 &&
5be60078
JH
29git read-tree $t &&
30git checkout-index -u -f -a &&
97ad535b 31git diff-files --exit-code'
57fe64a4
JH
32
33test_done