chiark / gitweb /
dimrngr: Avoid need for hkp housekeeping.
[gnupg2.git] / dirmngr / t-support.h
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 /* Macros to print the result of a test.  */
35 #define pass()  do { ; } while(0)
36 #define fail(a)  do { fprintf (stderr, "%s:%d: test %d failed\n",\
37                                __FILE__,__LINE__, (a));          \
38                      exit (1);                                   \
39                    } while(0)
40
41
42 #endif /* DIRMNGR_T_SUPPORT_H */