Add to git.
[pthrlib.git] / src / test_except3.c
1 /* Test the exception handling.
2  * Copyright (C) 2001 Richard W.M. Jones <rich@annexia.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  *
18  * $Id: test_except3.c,v 1.4 2002/12/01 14:29:31 rich Exp $
19  */
20
21 #include "config.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <assert.h>
26
27 #ifdef HAVE_STRING_H
28 #include <string.h>
29 #endif
30
31 #include <pool.h>
32
33 #include "pthr_pseudothread.h"
34
35 static pool test_pool;
36 static pseudothread test_pth;
37
38 static void
39 do_die (void *data)
40 {
41   pth_die ("this is do_die");
42 }
43
44 static void
45 do_nested (void *data)
46 {
47   const char *msg;
48
49   msg = pth_catch (do_die, 0);
50
51   if (!msg || strcmp (msg, "this is do_die") != 0)
52     abort ();
53 }
54
55 static void
56 do_test (void *data)
57 {
58   const char *msg;
59
60   msg = pth_catch (do_nested, 0);
61
62   if (msg) abort ();
63 }
64
65 int
66 main ()
67 {
68   test_pool = new_pool ();
69   test_pth = new_pseudothread (test_pool, do_test, 0, "testing thread");
70   pth_start (test_pth);
71
72   while (pseudothread_count_threads () > 0)
73     reactor_invoke ();
74
75   exit (0);
76 }