mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
65 lines
1.8 KiB
Bash
65 lines
1.8 KiB
Bash
|
#! /bin/sh -f
|
|||
|
#
|
|||
|
# Copyright (C) 1998 Free Software Foundation, Inc.
|
|||
|
# This file is part of the GNU C Library and contains tests for
|
|||
|
# the rpmatch(3)-implementation.
|
|||
|
# contributed by Jochen Hein <jochen.hein@delphi.central.de>
|
|||
|
|
|||
|
# This program is free software; you can redistribute it and/or modify
|
|||
|
# it under the terms of the GNU General Public License as published by
|
|||
|
# the Free Software Foundation; either version 2, or (at your option)
|
|||
|
# any later version.
|
|||
|
#
|
|||
|
# This program is distributed in the hope that it will be useful,
|
|||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
|
# GNU General Public License for more details.
|
|||
|
#
|
|||
|
# You should have received a copy of the GNU General Public License
|
|||
|
# along with this program; if not, write to the Free Software
|
|||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
|
|||
|
common_objpfx=$1
|
|||
|
IFS="<22>"
|
|||
|
rc=0
|
|||
|
while read locale string result dummy; do
|
|||
|
if [ "$locale" != "#" ]; then
|
|||
|
LOCPATH=${common_objpfx}localedata \
|
|||
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
|||
|
${common_objpfx}localedata/tst-rpmatch $locale $string $result \
|
|||
|
|| exit 1
|
|||
|
fi
|
|||
|
done <<EOF
|
|||
|
#<23> These are the tests for rpmatch in glibc. Each line contains one test,
|
|||
|
#<23> comments start with #<23> in the first column. The fields are seperated
|
|||
|
#<23> by paragraph signs and contain: the locale, the string, the expected
|
|||
|
#<23> return value of rpmatch(3). If the test fails, test-rpmatch prints
|
|||
|
#<23> all these informations
|
|||
|
C<EFBFBD>Yes<EFBFBD>1
|
|||
|
C<EFBFBD>yes<EFBFBD>1
|
|||
|
C<EFBFBD>YES<EFBFBD>1
|
|||
|
C<EFBFBD>YeS<EFBFBD>1
|
|||
|
C<EFBFBD>YEs<EFBFBD>1
|
|||
|
C<EFBFBD>yEs<EFBFBD>1
|
|||
|
C<EFBFBD>yES<EFBFBD>1
|
|||
|
C<EFBFBD>yeS<EFBFBD>1
|
|||
|
C<EFBFBD>No<EFBFBD>0
|
|||
|
C<EFBFBD>no<EFBFBD>0
|
|||
|
#<23> Uh, that's nonsense
|
|||
|
C<EFBFBD>nonsens<EFBFBD>0
|
|||
|
C<EFBFBD>Error<EFBFBD>-1
|
|||
|
de_DE<EFBFBD>Yes<EFBFBD>1
|
|||
|
de_DE<EFBFBD>Ja<EFBFBD>1
|
|||
|
de_DE<EFBFBD>Jammerschade<EFBFBD>1
|
|||
|
de_DE<EFBFBD>dejavu<EFBFBD>-1
|
|||
|
de_DE<EFBFBD>Nein<EFBFBD>0
|
|||
|
de_DE<EFBFBD>Fehler<EFBFBD>-1
|
|||
|
de_DE<EFBFBD>jein<EFBFBD>1
|
|||
|
EOF
|
|||
|
|
|||
|
rc=$?
|
|||
|
if [ $rc -eq 1 ]; then
|
|||
|
echo "Errors"
|
|||
|
fi
|
|||
|
exit $rc
|