X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-exclude3.sh;h=5d4034fe182a60b8cf32edcda443567b87168648;hb=5dedf26dd50d9acd31d51cf068fdcf824e6bf25b;hp=2cbd106add4f362ccb8a6d14866cdc27b352ae24;hpb=23d025fefa14a3815f8b804725acfd5622d3a4ac;p=gnulib.git diff --git a/tests/test-exclude3.sh b/tests/test-exclude3.sh index 2cbd106ad..5d4034fe1 100755 --- a/tests/test-exclude3.sh +++ b/tests/test-exclude3.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test suite for exclude. -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009-2012 Free Software Foundation, Inc. # This file is part of the GNUlib Library. # # This program is free software: you can redistribute it and/or modify @@ -16,19 +16,18 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -TMP=excltmp.$$ -LIST=flist.$$ -ERR=0 +. "${srcdir=.}/init.sh"; path_prepend_ . +fail=0 # Test include -cat > $LIST < in < $TMP < expected < out || exit $? -rm -f $TMP $LIST -exit $ERR +# Find out how to remove carriage returns from output. Solaris /usr/ucb/tr +# does not understand '\r'. +case $(echo r | tr -d '\r') in '') cr='\015';; *) cr='\r';; esac + +# normalize output +LC_ALL=C tr -d "$cr" < out > k && mv k out + +compare expected out || fail=1 + +Exit $fail