facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
36 lines
542 B
Bash
Executable File
36 lines
542 B
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test of general operation with Java .properties syntax.
|
|
|
|
cat <<EOF > mu-p-1.in
|
|
eight=eighth
|
|
|
|
five=fifth
|
|
|
|
four=fourth
|
|
|
|
one=first
|
|
|
|
seven=seventh
|
|
|
|
six=sixth
|
|
|
|
three=third
|
|
|
|
two=second
|
|
EOF
|
|
|
|
: ${MSGFMT=msgfmt}
|
|
${MSGFMT} --properties-input -o mu-p-1.mo mu-p-1.in || Exit 1
|
|
|
|
: ${MSGUNFMT=msgunfmt}
|
|
${MSGUNFMT} --properties-output -o mu-p-1.tmp mu-p-1.mo || Exit 1
|
|
LC_ALL=C tr -d '\r' < mu-p-1.tmp > mu-p-1.out || Exit 1
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mu-p-1.in mu-p-1.out
|
|
result=$?
|
|
|
|
exit $result
|