2007-06-19 11:11:11 +02:00
|
|
|
/* t-support.h - Helper for the regression tests
|
|
|
|
* Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2007-06-19 11:11:11 +02:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2007-06-19 11:11:11 +02:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2007-06-19 11:11:11 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2007-06-19 11:11:11 +02:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2007-06-19 11:11:11 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_T_SUPPORT_H
|
|
|
|
#define GNUPG_COMMON_T_SUPPORT_H 1
|
2007-06-19 11:11:11 +02:00
|
|
|
|
|
|
|
#ifdef GCRYPT_VERSION
|
|
|
|
#error The regression tests should not include with gcrypt.h
|
|
|
|
#endif
|
|
|
|
|
2015-11-06 10:49:09 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-12-12 13:57:19 +01:00
|
|
|
#include <gpg-error.h>
|
2010-02-26 19:44:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_GETENV
|
|
|
|
# define getenv(a) (NULL)
|
|
|
|
#endif
|
|
|
|
|
2014-02-26 16:18:45 +01:00
|
|
|
#ifndef DIM
|
|
|
|
# define DIM(v) (sizeof(v)/sizeof((v)[0]))
|
|
|
|
# define DIMof(type,member) DIM(((type *)0)->member)
|
|
|
|
#endif
|
|
|
|
|
2010-02-26 19:44:36 +01:00
|
|
|
|
|
|
|
/* Replacement prototypes. */
|
2007-06-19 11:11:11 +02:00
|
|
|
void *gcry_xmalloc (size_t n);
|
|
|
|
void *gcry_xcalloc (size_t n, size_t m);
|
|
|
|
void *gcry_xrealloc (void *a, size_t n);
|
|
|
|
char *gcry_xstrdup (const char * a);
|
|
|
|
void gcry_free (void *a);
|
|
|
|
|
|
|
|
/* Map the used xmalloc functions to those implemented by t-support.c */
|
|
|
|
#define xmalloc(a) gcry_xmalloc ( (a) )
|
|
|
|
#define xcalloc(a,b) gcry_xcalloc ( (a), (b) )
|
|
|
|
#define xrealloc(a,n) gcry_xrealloc ( (a), (n) )
|
|
|
|
#define xstrdup(a) gcry_xstrdup ( (a) )
|
|
|
|
#define xfree(a) gcry_free ( (a) )
|
|
|
|
|
|
|
|
|
|
|
|
/* Macros to print the result of a test. */
|
|
|
|
#define pass() do { ; } while(0)
|
|
|
|
#define fail(a) do { fprintf (stderr, "%s:%d: test %d failed\n",\
|
|
|
|
__FILE__,__LINE__, (a)); \
|
2015-10-30 12:40:22 +01:00
|
|
|
errcount++; \
|
|
|
|
if (!no_exit_on_fail) \
|
|
|
|
exit (1); \
|
2007-06-19 11:11:11 +02:00
|
|
|
} while(0)
|
|
|
|
|
2015-10-30 12:40:22 +01:00
|
|
|
/* If this flag is set the fail macro does not call exit. */
|
|
|
|
static int no_exit_on_fail;
|
|
|
|
/* Error counter. */
|
|
|
|
static int errcount;
|
|
|
|
|
2007-06-19 11:11:11 +02:00
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_T_SUPPORT_H*/
|