diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-11-17 16:23:57 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-11-17 16:23:57 -0800 |
commit | 3a00b16da491d5c869795251e1ad4f43b3ba1469 (patch) | |
tree | c6b20ce72b2479170e30adc50461031f68bfff48 /locale/tst-duplocale.c | |
parent | 815d8147a3418334ffa91e2384c6e159f0809d65 (diff) | |
download | glibc-3a00b16da491d5c869795251e1ad4f43b3ba1469.tar glibc-3a00b16da491d5c869795251e1ad4f43b3ba1469.tar.gz glibc-3a00b16da491d5c869795251e1ad4f43b3ba1469.tar.bz2 glibc-3a00b16da491d5c869795251e1ad4f43b3ba1469.zip |
Add missing test files.
Diffstat (limited to 'locale/tst-duplocale.c')
-rw-r--r-- | locale/tst-duplocale.c | 14 |
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" |