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.
44 lines
628 B
Bash
Executable File
44 lines
628 B
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test of general operation.
|
|
|
|
cat <<EOF > mu-test1.in
|
|
msgid "eight"
|
|
msgstr "eighth"
|
|
|
|
msgid "five"
|
|
msgstr "fifth"
|
|
|
|
msgid "four"
|
|
msgstr "fourth"
|
|
|
|
msgid "one"
|
|
msgstr "first"
|
|
|
|
msgid "seven"
|
|
msgstr "seventh"
|
|
|
|
msgid "six"
|
|
msgstr "sixth"
|
|
|
|
msgid "three"
|
|
msgstr "third"
|
|
|
|
msgid "two"
|
|
msgstr "second"
|
|
EOF
|
|
|
|
: ${MSGFMT=msgfmt}
|
|
${MSGFMT} -o mu-test1.mo mu-test1.in || Exit 1
|
|
|
|
: ${MSGUNFMT=msgunfmt}
|
|
${MSGUNFMT} -o mu-test1.tmp mu-test1.mo || Exit 1
|
|
LC_ALL=C tr -d '\r' < mu-test1.tmp > mu-test1.out || Exit 1
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mu-test1.in mu-test1.out
|
|
result=$?
|
|
|
|
exit $result
|