summaryrefslogtreecommitdiff
path: root/locale/tst-duplocale.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-duplocale.c
parent815d8147a3418334ffa91e2384c6e159f0809d65 (diff)
Add missing test files.
Diffstat (limited to 'locale/tst-duplocale.c')
-rw-r--r--locale/tst-duplocale.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/locale/tst-duplocale.c b/locale/tst-duplocale.c
new file mode 100644
index 0000000000..53e5fbb8fe
--- /dev/null
+++ b/locale/tst-duplocale.c
@@ -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"