Add missing test files.
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Nov 2009 00:23:57 +0000 (16:23 -0800)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Nov 2009 00:23:57 +0000 (16:23 -0800)
locale/tst-duplocale.c [new file with mode: 0644]
locale/tst-locname.c [new file with mode: 0644]

diff --git a/locale/tst-duplocale.c b/locale/tst-duplocale.c
new file mode 100644 (file)
index 0000000..53e5fbb
--- /dev/null
@@ -0,0 +1,14 @@
+#include <locale.h>
+#include <stdio.h>
+
+static int
+do_test (void)
+{
+  locale_t d = duplocale (LC_GLOBAL_LOCALE);
+  if (d != (locale_t) 0)
+    freelocale (d);
+  return 0;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
diff --git a/locale/tst-locname.c b/locale/tst-locname.c
new file mode 100644 (file)
index 0000000..7eb71ad
--- /dev/null
@@ -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"