summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-01-12 18:24:52 +0000
committerJakub Jelinek <jakub@redhat.com>2007-01-12 18:24:52 +0000
commit5e0378511149d82e638c0512051029aa2f9c5abd (patch)
tree3bee53fefe78ea975b74a5d1206d311358ee94ad
parent85b113535d5fcd0d879d6a83143f1340d1a0032b (diff)
downloadglibc-5e0378511149d82e638c0512051029aa2f9c5abd.tar
glibc-5e0378511149d82e638c0512051029aa2f9c5abd.tar.gz
glibc-5e0378511149d82e638c0512051029aa2f9c5abd.tar.bz2
glibc-5e0378511149d82e638c0512051029aa2f9c5abd.zip
* stdlib/tst-makecontext.c: Include errno.h. Change main()
to do_test(). Define TEST_FUNCTION. Include test-skeleton.c. (do_test): Check errno and exit(0) if ENOSYS.
-rw-r--r--ChangeLog6
-rw-r--r--stdlib/tst-makecontext.c16
2 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ecdab99e3c..f7d8fc5faf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-05 Steven Munroe <sjmunroe@us.ibm.com>
+
+ * stdlib/tst-makecontext.c: Include errno.h. Change main()
+ to do_test(). Define TEST_FUNCTION. Include test-skeleton.c.
+ (do_test): Check errno and exit(0) if ENOSYS.
+
2007-01-11 Jakub Jelinek <jakub@redhat.com>
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
diff --git a/stdlib/tst-makecontext.c b/stdlib/tst-makecontext.c
index cbce71fb92..1451efa56e 100644
--- a/stdlib/tst-makecontext.c
+++ b/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
@@ -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>
@@ -36,10 +37,16 @@ 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;
}
@@ -47,7 +54,7 @@ main (void)
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");
@@ -55,3 +62,6 @@ main (void)
}
return 2;
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"