3 # Test Shell support: backslashed double-quotes inside single-quotes.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles xg-sh-3.sh"
9 cat <<\EOF
> xg-sh-3.sh
10 echo `gettext 'abc\"def'`
13 tmpfiles
="$tmpfiles xg-sh-3.po"
14 : ${XGETTEXT=xgettext}
15 ${XGETTEXT} --omit-header --no-location xg-sh-3.sh
-d xg-sh-3
16 test $?
= 0 ||
{ rm -fr $tmpfiles; exit 1; }
18 tmpfiles
="$tmpfiles xg-sh-3.ok"
19 cat <<\EOF
> xg-sh-3.ok
25 ${DIFF} xg-sh-3.ok xg-sh-3.po