Add to git.
[pthrlib.git] / src / test_except1.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_except1.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 the message");
42 }
43
44 static void
45 do_test (void *data)
46 {
47   const char *msg;
48
49   /* Check that catch can correctly catch a die. */
50   msg = pth_catch (do_die, 0);
51
52   if (!msg || strcmp (msg, "this is the message") != 0)
53     abort ();
54 }
55
56 int
57 main ()
58 {
59   test_pool = new_pool ();
60   test_pth = new_pseudothread (test_pool, do_test, 0, "testing thread");
61   pth_start (test_pth);
62
63   while (pseudothread_count_threads () > 0)
64     reactor_invoke ();
65
66   exit (0);
67 }