diff options
| author | Carlos O'Donell <carlos@redhat.com> | 2020-01-08 13:24:42 -0500 |
|---|---|---|
| committer | Carlos O'Donell <carlos@redhat.com> | 2020-04-26 13:55:58 -0400 |
| commit | 92954ffa5a5662fbfde14febd7e5dcc358c85470 (patch) | |
| tree | ea7eb81874f0b3d706e701eda47f29718f7d948f /locale/Makefile | |
| parent | 8d9ffbb9d00669f62d5ddb4283b7c3d03955d942 (diff) | |
| download | glibc-92954ffa5a5662fbfde14febd7e5dcc358c85470.tar.xz glibc-92954ffa5a5662fbfde14febd7e5dcc358c85470.zip | |
localedef: Add verbose messages for failure paths.
During testing of localedef running in a minimal container
there were several error cases which were hard to diagnose
since they appeared as strerror (errno) values printed by the
higher level functions. This change adds three new verbose
messages for potential failure paths. The new messages give
the user the opportunity to use -v and display additional
information about why localedef might be failing. I found
these messages useful myself while writing a localedef
container test for --no-hard-links.
Since the changes cleanup the code that handle codeset
normalization we add tst-localedef-path-norm which contains
many sub-tests to verify the correct expected normalization of
codeset strings both when installing to default paths (the
only time normalization is enabled) and installing to absolute
paths. During the refactoring I created at least one
buffer-overflow which valgrind caught, but these tests did not
catch because the exec in the container had a very clean heap
with zero-initialized memory. However, between valgrind and
the tests the results are clean.
The new tst-localedef-path-norm passes without regression on
x86_64.
Change-Id: I28b9f680711ff00252a2cb15625b774cc58ecb9d
Diffstat (limited to 'locale/Makefile')
| -rw-r--r-- | locale/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/locale/Makefile b/locale/Makefile index c9694e236e..49c0c78c7d 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -28,6 +28,7 @@ routines = setlocale findlocale loadlocale loadarchive \ localeconv nl_langinfo nl_langinfo_l mb_cur_max \ newlocale duplocale freelocale uselocale tests = tst-C-locale tst-locname tst-duplocale +tests-container = tst-localedef-path-norm categories = ctype messages monetary numeric time paper name \ address telephone measurement identification collate aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name \ @@ -56,7 +57,7 @@ localedef-modules := localedef $(categories:%=ld-%) \ localedef-aux := md5 locale-modules := locale locale-spec lib-modules := charmap-dir simple-hash xmalloc xstrdup \ - record-status + record-status xasprintf GPERF = gperf |
