From 5de832bd255453f65d15cdad9c8d0b5f784df78a Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 16 Nov 2006 21:50:57 +0000 Subject: exercise the signal related jump code --- test/setjmp/sigjmpbug.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 test/setjmp/sigjmpbug.c (limited to 'test/setjmp') diff --git a/test/setjmp/sigjmpbug.c b/test/setjmp/sigjmpbug.c new file mode 100644 index 000000000..8c3be1cee --- /dev/null +++ b/test/setjmp/sigjmpbug.c @@ -0,0 +1,50 @@ +/* sigsetjmp vs alloca test case. Exercised bug on sparc. */ + +#include +#include +#include + +int ret; +int verbose; + +static void +sub5 (jmp_buf buf) +{ + siglongjmp (buf, 1); +} + +static void +test (int x) +{ + sigjmp_buf buf; + char *foo; + int arr[100]; + + ++ret; + + arr[77] = x; + if (sigsetjmp (buf, 1)) + { + --ret; + if (verbose) + printf ("made it ok; %d\n", arr[77]); + return; + } + + foo = (char *) alloca (128); + sub5 (buf); +} + +int +main (int argc, char *argv[]) +{ + int i; + + verbose = (argc != 1); + ret = 0; + + for (i = 123; i < 345; ++i) + test (i); + + return ret; +} -- cgit v1.2.3