3 # Test of general operation with Java .properties syntax.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles mu-p-1.in"
27 tmpfiles
="$tmpfiles mu-p-1.mo"
29 ${MSGFMT} --properties-input mu-p-1.
in -o mu-p-1.mo
30 test $?
= 0 ||
{ rm -fr $tmpfiles; exit 1; }
32 tmpfiles
="$tmpfiles mu-p-1.out"
33 : ${MSGUNFMT=msgunfmt}
34 ${MSGUNFMT} --properties-output mu-p-1.mo
-o mu-p-1.out
35 test $?
= 0 ||
{ rm -fr $tmpfiles; exit 1; }
38 ${DIFF} mu-p-1.
in mu-p-1.out