test-xalloc-die: avoid spurious failure due to libtool argv difference
[gnulib.git] / tests / test-xalloc-die.sh
1 #!/bin/sh
2 # Test suite for xalloc_die.
3 # Copyright (C) 2009 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 tmpfiles=""
20 trap '__st=$?; rm -fr $tmpfiles; exit $__st' 0
21 trap '__st=$?; (exit $__st); exit $__st' 1 2 3 15
22
23 if ( diff --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
24   compare() { diff -u "$@"; }
25 elif ( cmp --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then
26   compare() { cmp -s "$@"; }
27 else
28   compare() { cmp "$@"; }
29 fi
30
31 tmpout=t-xalloc-die.tmp-stderr
32 tmperr=t-xalloc-die.tmp-stdout
33 tmpfiles="$tmpout $tmperr ${tmperr}2"
34
35 PATH=".:$PATH"
36 export PATH
37 test-xalloc-die 2> ${tmperr} > ${tmpout}
38 case $? in
39   1) ;;
40   *) (exit 1); exit 1 ;;
41 esac
42
43 tr -d '\015' < $tmperr > ${tmperr}2 || { (exit 1); exit 1; }
44
45 compare - ${tmperr}2 <<\EOF || { (exit 1); exit 1; }
46 test-xalloc-die: memory exhausted
47 EOF
48
49 test -s $tmpout && { (exit 1); exit 1; }
50
51 rm -fr $tmpfiles
52
53 exit 0