update nearly all FSF copyright year lists to include 2010
[gnulib.git] / tests / test-vc-list-files-git.sh
1 #!/bin/sh
2 # Unit tests for vc-list-files
3 # Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
4 # This file is part of the GNUlib Library.
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 if ( diff --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
20   compare() { diff -u "$@"; }
21 elif ( cmp --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
22   compare() { cmp -s "$@"; }
23 else
24   compare() { cmp "$@"; }
25 fi
26
27 tmpdir=vc-git-$$
28 trap 'st=$?; cd '"`pwd`"' && rm -rf $tmpdir; exit $st' 0
29 trap '(exit $?); exit $?' 1 2 13 15
30
31 fail=1
32 mkdir $tmpdir && cd $tmpdir &&
33   # without git, skip the test
34   # The double use of 'exit' is needed for the reference to $? inside the trap.
35   { ( git init -q ) > /dev/null 2>&1 \
36     || { echo "Skipping test: git not found in PATH"; (exit 77); exit 77; }; } &&
37   mkdir d &&
38   touch d/a b c &&
39   git config user.email "you@example.com"
40   git config user.name "Your Name"
41   git add . > /dev/null &&
42   git commit -q -a -m log &&
43   printf '%s\n' b c d/a > expected &&
44   vc-list-files > actual &&
45   compare expected actual &&
46   fail=0
47
48 (exit $fail); exit $fail