43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#! /bin/sh
|
||
|
||
# Test that an out-of-range Unicode character doesn't lead to a crash.
|
||
|
||
tmpfiles=""
|
||
trap 'rm -fr $tmpfiles' 1 2 3 15
|
||
|
||
tmpfiles="$tmpfiles mf-test13.po"
|
||
cat <<\EOF >mf-test13.po
|
||
# SOME DESCRIPTIVE TITLE.
|
||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||
#
|
||
msgid ""
|
||
msgstr ""
|
||
"Project-Id-Version: minicom 2.1\n"
|
||
"POT-Creation-Date: 2003-05-16 22:33+0200\n"
|
||
"PO-Revision-Date: 2003-09-11 14:10+0200\n"
|
||
"Last-Translator: Jochen Hein <jochen@jochen.org>\n"
|
||
"Language-Team: german <de@li.org>\n"
|
||
"MIME-Version: 1.0\n"
|
||
"Content-Type: text/plain; charset=utf-8\n"
|
||
"Content-Transfer-Encoding: 8bit\n"
|
||
|
||
#: src/file.c:60
|
||
msgid " [Goto] [Prev] [Show] [Tag] [Untag] [Okay] "
|
||
msgstr " [Gehe zu] [Zurück] [Anzeigen] [Markieren] [Markierung l<><6C><EFBFBD><EFBFBD>en] [Okay] "
|
||
|
||
EOF
|
||
|
||
tmpfiles="$tmpfiles mf-test13.mo"
|
||
: ${MSGFMT=msgfmt}
|
||
${MSGFMT} mf-test13.po -o mf-test13.mo 2>/dev/null
|
||
# Exit code must be 1.
|
||
# If the invalid sequence didn't get noticed, it would be 0.
|
||
# If it produced a core dump, it would be 134 (= 128 + SIGABRT).
|
||
test $? = 1
|
||
result=$?
|
||
|
||
rm -fr $tmpfiles
|
||
|
||
exit $result
|