Files
bind9/lib/tests/include/tests/t_api.h
2016-06-27 14:56:38 +10:00

107 lines
1.7 KiB
C

/*
* Copyright (C) 1999-2001, 2004-2007, 2010, 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: t_api.h,v 1.24 2010/06/08 23:50:24 tbox Exp $ */
#ifndef TESTS_T_API_H
#define TESTS_T_API_H 1
/*! \file tests/t_api.h */
#include <stdio.h>
#include <isc/lang.h>
#include <isc/platform.h>
#include <isc/result.h>
#include <isc/formatcheck.h>
/*
*
* Result codes.
*
*/
#define T_PASS 0x1
#define T_FAIL 0x2
#define T_UNRESOLVED 0x3
#define T_SKIPPED 0x4
#define T_UNTESTED 0x5
#define T_THREADONLY 0x6
#define T_PKCS11ONLY 0x7
/*
*
* Assertion class codes.
*
*/
#define T_OPTIONAL 0x0
#define T_REQUIRED 0x1
/*
* Misc
*/
#define T_MAXTOKS 16
#define T_ARG(n) (*(av + (n)))
typedef void (*PFV)(void);
typedef struct {
PFV pfv;
const char *func_name;
} testspec_t;
LIBTESTS_EXTERNAL_DATA extern int T_debug;
#ifndef WIN32
extern testspec_t T_testlist[];
#endif
ISC_LANG_BEGINDECLS
#ifdef WIN32
void
t_settests(const testspec_t list[]);
int
t_main(int argc, char **argv);
#endif
void
t_assert(const char *component, int anum, int class, const char *what, ...)
ISC_FORMAT_PRINTF(4, 5);
void
t_info(const char *format, ...) ISC_FORMAT_PRINTF(1, 2);
void
t_result(int result);
char *
t_getenv(const char *name);
char *
t_fgetbs(FILE *fp);
isc_result_t
t_dns_result_fromtext(char *result);
unsigned int
t_dc_method_fromtext(char *dc_method);
int
t_bustline(char *line, char **toks);
int
t_eval(const char *filename, int (*func)(char **), int nargs);
ISC_LANG_ENDDECLS
#endif /* TESTS_T_API_H */