summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2023-02-08 23:38:08 +0100
committerBruno Haible <bruno@clisp.org>2023-02-08 23:38:08 +0100
commit57ec1201e41544144928901fa21f93085c9862d0 (patch)
tree57bd826277d586e0862be432a666946fcf366dc0 /tests
parent0f3415afeeef8ca61e3b3f679399d163d263ed14 (diff)
downloadgnulib-57ec1201e41544144928901fa21f93085c9862d0.tar.gz
nl_langinfo tests: Prepare for adding more tests.
* tests/test-nl_langinfo1.c: Renamed from tests/test-nl_langinfo.c. * tests/test-nl_langinfo1.sh: Renamed from tests/test-nl_langinfo.sh. Update. * modules/nl_langinfo-tests (Files, Makefile.am): Update.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-nl_langinfo1.c (renamed from tests/test-nl_langinfo.c)0
-rwxr-xr-xtests/test-nl_langinfo1.sh (renamed from tests/test-nl_langinfo.sh)6
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-nl_langinfo.c b/tests/test-nl_langinfo1.c
index 5254f8626e..5254f8626e 100644
--- a/tests/test-nl_langinfo.c
+++ b/tests/test-nl_langinfo1.c
diff --git a/tests/test-nl_langinfo.sh b/tests/test-nl_langinfo1.sh
index a66672fe2c..9acfcdd949 100755
--- a/tests/test-nl_langinfo.sh
+++ b/tests/test-nl_langinfo1.sh
@@ -1,17 +1,17 @@
#!/bin/sh
-LC_ALL=C ${CHECKER} ./test-nl_langinfo${EXEEXT} 0 || exit 1
+LC_ALL=C ${CHECKER} ./test-nl_langinfo1${EXEEXT} 0 || exit 1
# Test whether a specific traditional locale is installed.
: "${LOCALE_FR=fr_FR}"
if test $LOCALE_FR != none; then
- LC_ALL=$LOCALE_FR ${CHECKER} ./test-nl_langinfo${EXEEXT} 1 || exit 1
+ LC_ALL=$LOCALE_FR ${CHECKER} ./test-nl_langinfo1${EXEEXT} 1 || exit 1
fi
# Test whether a specific UTF-8 locale is installed.
: "${LOCALE_FR_UTF8=fr_FR.UTF-8}"
if test $LOCALE_FR_UTF8 != none; then
- LC_ALL=$LOCALE_FR_UTF8 ${CHECKER} ./test-nl_langinfo${EXEEXT} 2 || exit 1
+ LC_ALL=$LOCALE_FR_UTF8 ${CHECKER} ./test-nl_langinfo1${EXEEXT} 2 || exit 1
fi
exit 0