annotate tests/test-vc-list-files-git.sh @ 17363:5a51fb7777a9

sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin Problem reported by Marco Atzeri in <http://lists.gnu.org/archive/html/bug-gnulib/2013-03/msg00000.html>. * lib/sys_select.in.h [HAVE_SYS_SELECT_H && _CYGWIN_SYS_TIME_H]: Simply delegate to the system <sys/select.h> in this case too. Also, pay attention to _GL_SYS_SELECT_H_REDIRECT_FROM_SYS_TIME_H only if OSF/1, since otherwise Cygwin breaks, and it doesn't seem to be needed on Solaris either. * lib/sys_time.in.h [_CYGWIN_SYS_TIME_H]: Simply delgate to the system <sys/time.h> in this case.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 19 Mar 2013 09:08:47 -0700
parents e542fd46ad6f
children 344018b6e5d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
1 #!/bin/sh
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
2 # Unit tests for vc-list-files
17249
e542fd46ad6f maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents: 17067
diff changeset
3 # Copyright (C) 2008-2013 Free Software Foundation, Inc.
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
4 # This file is part of the GNUlib Library.
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
5 #
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
6 # This program is free software: you can redistribute it and/or modify
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
7 # it under the terms of the GNU General Public License as published by
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
8 # the Free Software Foundation; either version 3 of the License, or
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
9 # (at your option) any later version.
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
10 #
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
11 # This program is distributed in the hope that it will be useful,
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
14 # GNU General Public License for more details.
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
15 #
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
16 # You should have received a copy of the GNU General Public License
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
18
13255
fc7e08ab9fa4 vc-list-files tests: convert to use init.sh
Jim Meyering <meyering@redhat.com>
parents: 12999
diff changeset
19 : ${srcdir=.}
13633
016a2b7d7d27 avoid coreutils "make distcheck" failure
Jim Meyering <meyering@redhat.com>
parents: 13630
diff changeset
20 . "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" .
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
21
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
22 tmpdir=vc-git-$$
12999
e7606e6e8c83 test-vc-list-files-git: make more robust
Bert Wesarg <bert.wesarg@googlemail.com>
parents: 12559
diff changeset
23 GIT_DIR= GIT_WORK_TREE=; unset GIT_DIR GIT_WORK_TREE
e7606e6e8c83 test-vc-list-files-git: make more robust
Bert Wesarg <bert.wesarg@googlemail.com>
parents: 12559
diff changeset
24
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
25 fail=1
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
26 mkdir $tmpdir && cd $tmpdir &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
27 # without git, skip the test
10200
3a2bf9fb3efb Avoid a test failure when the test wants to skip itself.
Bruno Haible <bruno@clisp.org>
parents: 10077
diff changeset
28 # The double use of 'exit' is needed for the reference to $? inside the trap.
10491
c8c21ddfe3ba Explain reason for skipping tests.
Bruno Haible <bruno@clisp.org>
parents: 10200
diff changeset
29 { ( git init -q ) > /dev/null 2>&1 \
13255
fc7e08ab9fa4 vc-list-files tests: convert to use init.sh
Jim Meyering <meyering@redhat.com>
parents: 12999
diff changeset
30 || skip_ "git not found in PATH"; } &&
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
31 mkdir d &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
32 touch d/a b c &&
12999
e7606e6e8c83 test-vc-list-files-git: make more robust
Bert Wesarg <bert.wesarg@googlemail.com>
parents: 12559
diff changeset
33 git config user.email "you@example.com" &&
e7606e6e8c83 test-vc-list-files-git: make more robust
Bert Wesarg <bert.wesarg@googlemail.com>
parents: 12559
diff changeset
34 git config user.name "Your Name" &&
10025
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
35 git add . > /dev/null &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
36 git commit -q -a -m log &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
37 printf '%s\n' b c d/a > expected &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
38 vc-list-files > actual &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
39 compare expected actual &&
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
40 fail=0
c5b62d960101 add tests for vc-list-files
Jim Meyering <meyering@redhat.com>
parents:
diff changeset
41
13255
fc7e08ab9fa4 vc-list-files tests: convert to use init.sh
Jim Meyering <meyering@redhat.com>
parents: 12999
diff changeset
42 Exit $fail