blob: 6333c9006d5d9cb15ad6d11d1205f5e9df26ae04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# The name of a specific traditional locale.
: "${LOCALE_FR=fr_FR}"
# The name of a specific UTF-8 locale.
: "${LOCALE_FR_UTF8=fr_FR.UTF-8}"
# Make them accessible as environment variables.
export LOCALE_FR LOCALE_FR_UTF8
${CHECKER} ./test-nl_langinfo2${EXEEXT}
|