blob: 2657a1bcf75c7d10f57764a26a62e54efee351ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
# Test the libgettextpo library.
../gettextpo-1-prg${EXEEXT} "$abs_srcdir"/gettextpo-1.de.po > /dev/null || exit 1
: ${DIFF=diff}
${DIFF} "$abs_srcdir"/gettextpo-1.de.po gtpo-1-copied.po || exit 1
${DIFF} "$abs_srcdir"/gettextpo-1.de.po gtpo-1-created.po || exit 1
exit 0
|