~ubuntu-branches/ubuntu/trusty/gettext/trusty

« back to all changes in this revision

Viewing changes to gettext-tools/gnulib-tests/test-copy-file-1.sh

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-10-21 19:12:18 UTC
  • mfrom: (2.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20131021191218-5t1ixdaae0dbc1l3
Tags: 0.18.3.1-1ubuntu1
* Merge with Debian; remaining changes:
  - Allow the package to cross-build.
  - Define a stage1 profile to build without java and git.
  - Throw away /usr/lib/gettext/gnu.gettext*; we don't need them.
  - Explicitly configure with --disable-csharp.
  - Keep gettext.jar in /usr/share/gettext instead of moving it to
    /usr/share/java.
  - Drop autopoint recommends of gettext. It pulls in git and
    other sizable packages which make the CDs explode.
* gettext-el: Add an alternative dependency on emacs24.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Test copy-file on the file system of /var/tmp, which usually is a local
 
4
# file system.
 
5
 
 
6
if test -d /var/tmp; then
 
7
  TMPDIR=/var/tmp
 
8
else
 
9
  TMPDIR=/tmp
 
10
fi
 
11
export TMPDIR
 
12
 
 
13
"${srcdir}/test-copy-file.sh"
 
14
ret1=$?
 
15
NO_STDERR_OUTPUT=1 "${srcdir}/test-copy-file.sh"
 
16
ret2=$?
 
17
case $ret1 in
 
18
  77 ) exit $ret2 ;;
 
19
  * ) exit $ret1 ;;
 
20
esac