annotate tests/test-mbsstr2.sh @ 17622:71e733c62cee
savedir: add sorting arg to savedir, streamsavedir; remove fdsavedir
Patch based on an idea by Dick Streefland in
<https://savannah.gnu.org/patch/?7892>.
* NEWS: Document this.
* lib/savedir.c (NAME_SIZE_DEFAULT): Remove.
(direntry_t, comparison_function): New types.
(direntry_cmp_name): New function.
(direntry_cmp_inode) [D_INO_IN_DIRENT]: New function.
(streamsavedir, savedir): New arg OPTION.
(streamsavedir): Simplify memory allocation.
(fdsavedir): Remove.
* lib/savedir.h (enum savedir_option): New type.
(streamsavedir, savedir): New arg OPTION.
(fdsavedir): Remove.
author |
Sergey Poznyakoff <gray@gnu.org.ua> |
date |
Thu, 13 Feb 2014 22:01:39 +0200 |
parents |
95ebb0f8b658 |
children |
|
rev |
line source |
8132
|
1 #!/bin/sh |
|
2 |
|
3 # Test whether a specific UTF-8 locale is installed. |
|
4 : ${LOCALE_FR_UTF8=fr_FR.UTF-8} |
|
5 if test $LOCALE_FR_UTF8 = none; then |
|
6 if test -f /usr/bin/localedef; then |
|
7 echo "Skipping test: no french Unicode locale is installed" |
|
8 else |
|
9 echo "Skipping test: no french Unicode locale is supported" |
|
10 fi |
|
11 exit 77 |
|
12 fi |
|
13 |
|
14 LC_ALL=$LOCALE_FR_UTF8 \ |
|
15 ./test-mbsstr2${EXEEXT} |