diff options
author | Carlos O'Donell <carlos@systemhalted.org> | 2017-10-13 22:44:44 -0700 |
---|---|---|
committer | Carlos O'Donell <carlos@systemhalted.org> | 2017-10-25 12:24:31 -0700 |
commit | 56fa555a834c1536bf8d58c1ac6097f18f0d92b6 (patch) | |
tree | f26c97c188d81525b3bfd0f03f5ff4f60330e4b6 /localedata/Makefile | |
parent | 337ff3c501f0e1fadd1036b6fa2754cfbb0c29ea (diff) | |
download | glibc-56fa555a834c1536bf8d58c1ac6097f18f0d92b6.tar.gz glibc-56fa555a834c1536bf8d58c1ac6097f18f0d92b6.tar.xz glibc-56fa555a834c1536bf8d58c1ac6097f18f0d92b6.zip |
localedata: Locale and test name are the same.
The localedata collation test data is encoded in a particular character set. We rename the test data to match the full locale name with encoding, and adjust the Makefile and sort-test.sh script. This allows us to have a future C.UTF-8 test that is disambiguated from the built-in C locale. Signed-off-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 84dbc5adbb..75f71bb8b2 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -38,7 +38,7 @@ test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch tst-trans \ test-input := de_DE.ISO-8859-1 en_US.ISO-8859-1 da_DK.ISO-8859-1 \ hr_HR.ISO-8859-2 sv_SE.ISO-8859-1 tr_TR.UTF-8 fr_FR.UTF-8 \ si_LK.UTF-8 uk_UA.UTF-8 hu_HU.UTF-8 -test-input-data = $(addsuffix .in, $(basename $(test-input))) +test-input-data = $(addsuffix .in, $(test-input)) test-output := $(foreach s, .out .xout, \ $(addsuffix $s, $(basename $(test-input)))) ld-test-names := test1 test2 test3 test4 test5 test6 test7 |