#! /bin/sh
# @(#) $Id: test-ENCAOPT.sh,v 1.5 2003/11/17 12:27:39 yeti Exp $
# Purpose: test whether ENCAOPT works.
. $srcdir/setup.sh
DATATESTNAME=test-guess-short
rm -f $TESTNAME.expected 2>/dev/null
ln -s $srcdir/$DATATESTNAME.expected $TESTNAME.expected
for l in $ALL_TEST_LANGUAGES; do
ENCAOPT="-L $l -p -e"
# This is necessary when $ENCA is in fact a libtool script
export ENCAOPT
$ENCA $srcdir/$l-s.* | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1
done
. $srcdir/finish.sh
rm -f $TESTNAME.expected 2>/dev/null
|