summaryrefslogtreecommitdiff
path: root/locale/tst-locname.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-11-17 16:23:57 -0800
committerUlrich Drepper <drepper@redhat.com>2009-11-17 16:23:57 -0800
commit3a00b16da491d5c869795251e1ad4f43b3ba1469 (patch)
treec6b20ce72b2479170e30adc50461031f68bfff48 /locale/tst-locname.c
parent815d8147a3418334ffa91e2384c6e159f0809d65 (diff)
Add missing test files.
Diffstat (limited to 'locale/tst-locname.c')
-rw-r--r--locale/tst-locname.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/locale/tst-locname.c b/locale/tst-locname.c
new file mode 100644
index 0000000000..7eb71adfd8
--- /dev/null
+++ b/locale/tst-locname.c
@@ -0,0 +1,20 @@
+#include <langinfo.h>
+#include <locale.h>
+#include <stdio.h>
+#include <string.h>
+
+static int
+do_test (void)
+{
+ const char *s = nl_langinfo (_NL_LOCALE_NAME (LC_CTYPE));
+ if (s == NULL || strcmp (s, "C") != 0)
+ {
+ printf ("incorrect locale name returned: %s, expected \"C\"\n", s);
+ return 1;
+ }
+
+ return 0;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"