diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-26 00:38:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-26 00:38:37 +0000 |
commit | 7475d01602e881e206a29ee30bc8c3e85c235379 (patch) | |
tree | 841acac97699c058c94e84216f702f091f360cd0 /localedata/tst-locale.sh | |
parent | 8b682b9907ad1d60bdd45431e0e3bbdf358837ec (diff) | |
download | glibc-7475d01602e881e206a29ee30bc8c3e85c235379.tar glibc-7475d01602e881e206a29ee30bc8c3e85c235379.tar.gz glibc-7475d01602e881e206a29ee30bc8c3e85c235379.tar.bz2 glibc-7475d01602e881e206a29ee30bc8c3e85c235379.zip |
Update.
2000-06-25 Greg McGary <greg@mcgary.org>
* sysdeps/i386/i586/memcpy.S: Redefine memcpy as mempcpy,
not as bcopy.
Diffstat (limited to 'localedata/tst-locale.sh')
-rwxr-xr-x | localedata/tst-locale.sh | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/localedata/tst-locale.sh b/localedata/tst-locale.sh index 75d54b81ae..51a3a34062 100755 --- a/localedata/tst-locale.sh +++ b/localedata/tst-locale.sh @@ -27,10 +27,13 @@ test_locale () input=$2 out=$3 rep=$4 + if test $rep; then + rep="--repertoire-map $rep" + fi I18NPATH=. GCONV_PATH=${common_objpfx}/iconvdata \ ${common_objpfx}elf/ld.so --library-path $common_objpfx \ ${common_objpfx}locale/localedef --quiet -c -f $charmap -i $input \ - --repertoire-map $rep ${common_objpfx}localedata/$out + ${rep} ${common_objpfx}localedata/$out if [ $? -ne 0 ]; then echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \ @@ -39,11 +42,11 @@ test_locale () fi } -test_locale IBM437 de_DE de_DE.437 mnemonic.ds -test_locale tests/test1.cm tests/test1.def test1 mnemonic.ds -test_locale tests/test2.cm tests/test2.def test2 mnemonic.ds -test_locale tests/test3.cm tests/test3.def test3 mnemonic.ds -test_locale tests/test4.cm tests/test4.def test4 mnemonic.ds +test_locale IBM437 de_DE de_DE.437 +test_locale tests/test1.cm tests/test1.def test1 +test_locale tests/test2.cm tests/test2.def test2 +test_locale tests/test3.cm tests/test3.def test3 +test_locale tests/test4.cm tests/test4.def test4 test_locale tests/test5.cm tests/test5.def test5 tests/test5.ds exit 0 |