23 lines
465 B
Bash
23 lines
465 B
Bash
#! /bin/sh
|
|
|
|
# This test often fails during development. It works after "make dist".
|
|
|
|
# Test C support.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles xg-c-1.po"
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} -d xg-c-1 -k_ --omit-header --no-location \
|
|
$top_srcdir/src/xgettext.c $top_srcdir/src/msgfmt.c
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} $top_srcdir/tests/xg-c-1.ok.po xg-c-1.po
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|