Files
RedBear-OS/recipes/tools/gettext/source/gettext-tools/tests/sentence-1
T
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

123 lines
1.5 KiB
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
# Test of sentence handling.
cat > s1.in <<\EOF
1
This is a primary sentence
1
This is a primary sentence.
1
This is a primary sentence.x
2
This is a primary sentence. This is a secondary sentence
1
This is a primary sentence. This is a secondary sentence
1
This is a primary sentence.' This is a secondary sentence
3
This is a primary sentence. This is a secondary sentence
2
This is a primary sentence.' This is a secondary sentence
2
This is a primary sentence.'x This is a secondary sentence
2
This is a primary sentence.''x This is a secondary sentence
2
This is a primary sentence.
This is a secondary sentence
2
This is a primary sentence.
This is a secondary sentence
2
This is a primary sentence. 
This is a secondary sentence
2
This is a primary sentence. This is a secondary sentence
2
This is a primary sentence.' This is a secondary sentence
2
This is a primary sentence.'
This is a secondary sentence
EOF
cat > s1.ok <<EOF
FFFD
2E
.
FFFD
2E
. This is a secondary sentence
2E
. This is a secondary sentence
2E
.' This is a secondary sentence
FFFD
2E
.' This is a secondary sentence
FFFD
FFFD
2E
.
This is a secondary sentence
2E
.
This is a secondary sentence
2E
. 
This is a secondary sentence
2E
. This is a secondary sentence
2E
.' This is a secondary sentence
2E
.'
This is a secondary sentence
EOF
../sentence-1-prg < s1.in > s1.tmp || Exit 1
LC_ALL=C tr -d '\r' < s1.tmp > s1.out || Exit 1
: ${DIFF=diff}
${DIFF} s1.ok s1.out || Exit 1
Exit 0