Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Include errno.h. Change main() to do_test(). Define TEST_FUNCTION. In…
…clude test-skeleton.c. (do_test): Check errno and exit(0) if ENOSYS.
  • Loading branch information
Ulrich Drepper committed Jan 11, 2007
1 parent 43b9d65 commit d6220e9
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 5 deletions.
3 changes: 2 additions & 1 deletion stdlib/Makefile
Expand Up @@ -68,7 +68,7 @@ tests := tst-strtol tst-strtod testmb testrand testsort testdiv \
tst-limits tst-rand48 bug-strtod tst-setcontext \
test-a64l tst-qsort tst-system testmb2 bug-strtod2 \
tst-atof1 tst-atof2 tst-strtod2 tst-strtod3 tst-rand48-2 \
tst-makecontext
tst-makecontext tst-strtod4

include ../Makeconfig

Expand Down Expand Up @@ -114,6 +114,7 @@ test-canon-ARGS = --test-dir=${common-objpfx}stdlib

tst-strtod-ENV = LOCPATH=$(common-objpfx)localedata
tst-strtod3-ENV = LOCPATH=$(common-objpfx)localedata
tst-strtod4-ENV = LOCPATH=$(common-objpfx)localedata
testmb2-ENV = LOCPATH=$(common-objpfx)localedata

# Run a test on the header files we use.
Expand Down
4 changes: 3 additions & 1 deletion stdlib/strtod_l.c
Expand Up @@ -651,10 +651,11 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
if (c != '0')
{
for (cnt = 0; thousands[cnt] != '\0'; ++cnt)
if (c != thousands[cnt])
if (thousands[cnt] != cp[cnt])
break;
if (thousands[cnt] != '\0')
break;
cp += cnt - 1;
}
c = *++cp;
}
Expand Down Expand Up @@ -725,6 +726,7 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
break;
if (thousands[cnt] != '\0')
break;
cp += cnt - 1;
}
#endif
}
Expand Down
16 changes: 13 additions & 3 deletions stdlib/tst-makecontext.c
@@ -1,4 +1,4 @@
/* Copyright (C) 2006 Free Software Foundation, Inc.
/* Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand All @@ -16,6 +16,7 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <ucontext.h>
Expand All @@ -36,22 +37,31 @@ cf (int i)
}

int
main (void)
do_test (void)
{
if (getcontext (&ucp) != 0)
{
if (errno == ENOSYS)
{
puts ("context handling not supported");
return 0;
}

puts ("getcontext failed");
return 1;
}
thr = 94;
ucp.uc_link = NULL;
ucp.uc_stack.ss_sp = st1;
ucp.uc_stack.ss_size = sizeof st1;
makecontext (&ucp, (void (*) ()) cf, 1, 78);
makecontext (&ucp, (void (*) (void)) cf, 1, 78);
if (setcontext (&ucp) != 0)
{
puts ("setcontext failed");
return 1;
}
return 2;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
56 changes: 56 additions & 0 deletions stdlib/tst-strtod4.c
@@ -0,0 +1,56 @@
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define NBSP "\xc2\xa0"

static const struct
{
const char *in;
const char *out;
double expected;
} tests[] =
{
{ "000"NBSP"000"NBSP"000", "", 0.0 },
{ "1"NBSP"000"NBSP"000,5x", "x", 1000000.5 }
};
#define NTESTS (sizeof (tests) / sizeof (tests[0]))


static int
do_test (void)
{
if (setlocale (LC_ALL, "cs_CZ.UTF-8") == NULL)
{
puts ("could not set locale");
return 1;
}

int status = 0;

for (int i = 0; i < NTESTS; ++i)
{
char *ep;
double r = __strtod_internal (tests[i].in, &ep, 1);

if (strcmp (ep, tests[i].out) != 0)
{
printf ("%d: got rest string \"%s\", expected \"%s\"\n",
i, ep, tests[i].out);
status = 1;
}

if (r != tests[i].expected)
{
printf ("%d: got wrong results %g, expected %g\n",
i, r, tests[i].expected);
status = 1;
}
}

return status;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"

0 comments on commit d6220e9

Please sign in to comment.