glibc/localedata/tst-leaks.c
Andreas Schwab ce5a7de6cd Don't reduce test timeout to less than default
This removes all overrides of TIMEOUT that are less than or equal to the
default timeout.
2018-10-17 09:34:13 +02:00

22 lines
307 B
C

#include <locale.h>
#include <mcheck.h>
static int
do_test (void)
{
int cnt;
mtrace ();
for (cnt = 0; cnt < 100; ++cnt)
{
setlocale (LC_ALL, "de_DE.ISO-8859-1");
setlocale (LC_ALL, "de_DE.UTF-8");
}
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"