mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-26 15:39:11 +00:00
Rationale: Not interpreting $ and \ in the here documents is a better default than interpreting them. * gettext-tools/tests/*: Write 'cat <<\EOF' instead of 'cat <<EOF', when no shell dollar-substitution and backslash-interpretation is needed.
57 lines
2.3 KiB
Bash
Executable File
57 lines
2.3 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test Lua support: stack overflow prevented by nesting depth check.
|
|
|
|
cat <<\EOF > xg-lu-so-2.lua
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
_("Hello!")
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
EOF
|
|
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} --omit-header --no-location -d xg-lu-so-2.tmp xg-lu-so-2.lua 2>xg-lu-so-2.err
|
|
result=$?
|
|
cat xg-lu-so-2.err
|
|
test $result = 1 || Exit 1
|
|
|
|
exit 0
|