diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2008-04-27 13:31:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-29 23:11:57 -0700 |
commit | 97ad535b01f7c4e960298aabe16979ad92f26d4f (patch) | |
tree | 12743adc5db1debd1821050cc3e2cb61d0f4d8b3 /t/t2002-checkout-cache-u.sh | |
parent | 4fe86488e1a550aa058c081c7e67644dd0f7c98e (diff) | |
download | git-97ad535b01f7c4e960298aabe16979ad92f26d4f.tar.gz git-97ad535b01f7c4e960298aabe16979ad92f26d4f.tar.xz |
Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh
As a nice side effect it also fixes t2002-checkout-cache-u.sh on FreeBSD 4,
/bin/sh of which has problems interpreting "! command" construction.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t2002-checkout-cache-u.sh')
-rwxr-xr-x | t/t2002-checkout-cache-u.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t2002-checkout-cache-u.sh b/t/t2002-checkout-cache-u.sh index 0f441bcef..70361c806 100755 --- a/t/t2002-checkout-cache-u.sh +++ b/t/t2002-checkout-cache-u.sh @@ -21,13 +21,13 @@ test_expect_success \ rm -f path0 && git read-tree $t && git checkout-index -f -a && -! git diff-files | diff - /dev/null' +test_must_fail git diff-files --exit-code' test_expect_success \ 'with -u, git checkout-index picks up stat information from new files.' ' rm -f path0 && git read-tree $t && git checkout-index -u -f -a && -git diff-files | diff - /dev/null' +git diff-files --exit-code' test_done |