add tests for vc-list-files
[gnulib.git] / tests / test-vc-list-files-git.sh
1 #!/bin/sh
2 # Unit tests for vc-list-files
3 # Copyright (C) 2008 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 PATH="$abs_top_srcdir/build-aux":$PATH
20 export PATH
21
22 if ( diff --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
23   compare() { diff -u "$@"; }
24 elif ( cmp --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
25   compare() { cmp -s "$@"; }
26 else
27   compare() { cmp "$@"; }
28 fi
29
30 tmpdir=vc-git-$$
31 trap 'st=$?; cd '"`pwd`"' && rm -rf $tmpdir; exit $st' 0
32 trap '(exit $?); exit $?' 1 2 13 15
33
34 fail=1
35 mkdir $tmpdir && cd $tmpdir &&
36   # without git, skip the test
37   { git init -q || exit 77; } &&
38   mkdir d &&
39   touch d/a b c &&
40   git add . > /dev/null &&
41   git commit -q -a -m log &&
42   printf '%s\n' b c d/a > expected &&
43   vc-list-files > actual &&
44   compare expected actual &&
45   fail=0
46
47 (exit $fail); exit $fail