mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-14 17:50:04 -04:00
43 lines
940 B
Bash
43 lines
940 B
Bash
#! /bin/sh
|
|
|
|
# Test --use-first option with Java .properties syntax.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles mcat-p-1.in1 mcat-p-1.in2"
|
|
cat <<\EOF > mcat-p-1.in1
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
cat <<\EOF > mcat-p-1.in2
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Herzlichen Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles mcat-p-1.out"
|
|
rm -f mcat-p-1.out
|
|
|
|
: ${MSGCAT=msgcat}
|
|
${MSGCAT} --use-first --more-than=0 --properties-input --properties-output \
|
|
mcat-p-1.in1 mcat-p-1.in2 -o mcat-p-1.out
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
tmpfiles="$tmpfiles mcat-p-1.ok"
|
|
cat << \EOF > mcat-p-1.ok
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mcat-p-1.ok mcat-p-1.out
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|