~ubuntu-branches/ubuntu/trusty/gnutls26/trusty-security

« back to all changes in this revision

Viewing changes to gl/tests/test-vc-list-files-git.sh

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2010-04-22 19:29:52 UTC
  • mto: (12.4.3 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20100422192952-gbj6cvaan8e4ejck
Tags: upstream-2.9.10
ImportĀ upstreamĀ versionĀ 2.9.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# Unit tests for vc-list-files
3
 
# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
 
3
# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
4
4
# This file is part of the GNUlib Library.
5
5
#
6
6
# This program is free software: you can redistribute it and/or modify
28
28
trap 'st=$?; cd '"`pwd`"' && rm -rf $tmpdir; exit $st' 0
29
29
trap '(exit $?); exit $?' 1 2 13 15
30
30
 
 
31
GIT_DIR= GIT_WORK_TREE=; unset GIT_DIR GIT_WORK_TREE
 
32
 
31
33
fail=1
32
34
mkdir $tmpdir && cd $tmpdir &&
33
35
  # without git, skip the test
36
38
    || { echo "Skipping test: git not found in PATH"; (exit 77); exit 77; }; } &&
37
39
  mkdir d &&
38
40
  touch d/a b c &&
39
 
  git config user.email "you@example.com"
40
 
  git config user.name "Your Name"
 
41
  git config user.email "you@example.com" &&
 
42
  git config user.name "Your Name" &&
41
43
  git add . > /dev/null &&
42
44
  git commit -q -a -m log &&
43
45
  printf '%s\n' b c d/a > expected &&