1 /* t-support.h - Helper for the regression tests
2  * Copyright (C) 2007  Free Software Foundation, Inc.
3  *
4  * This file is part of JNLIB, which is a subsystem of GnuPG.
5  *
6  * JNLIB is free software; you can redistribute it and/or modify it
7  * under the terms of either
8  *
9  *   - the GNU Lesser General Public License as published by the Free
10  *     Software Foundation; either version 3 of the License, or (at
11  *     your option) any later version.
12  *
13  * or
14  *
15  *   - the GNU General Public License as published by the Free
16  *     Software Foundation; either version 2 of the License, or (at
17  *     your option) any later version.
18  *
19  * or both in parallel, as here.
20  *
21  * JNLIB is distributed in the hope that it will be useful, but
22  * WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24  * General Public License for more details.
25  *
26  * You should have received a copies of the GNU General Public License
27  * and the GNU Lesser General Public License along with this program;
28  * if not, see <https://www.gnu.org/licenses/>.
29  */
30 
31 #ifndef DIRMNGR_T_SUPPORT_H
32 #define DIRMNGR_T_SUPPORT_H 1
33 
34 #ifndef DIM
35 # define DIM(v)		     (sizeof(v)/sizeof((v)[0]))
36 # define DIMof(type,member)   DIM(((type *)0)->member)
37 #endif
38 
39 
40 /* Macros to print the result of a test.  */
41 #define pass()  do { ; } while(0)
42 #define fail(a)  do { fprintf (stderr, "%s:%d: test %d failed\n",\
43                                __FILE__,__LINE__, (a));          \
44                      exit (1);                                   \
45                    } while(0)
46 
47 
48 #endif /* DIRMNGR_T_SUPPORT_H */
49