mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 09:59:08 -04:00
Mostly, several functions that take pointers as arguments, almost always char * pointers, had those pointers qualified with "const". Those that returned pointers to previously const-qualified arguments had their return values qualified as const. Some structure members were qualified as const to retain that attribute from the variables from which they were assigned. Minor other ISC style cleanups.
91 lines
1.8 KiB
C
91 lines
1.8 KiB
C
/*
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#ifndef TESTS_T_API_H
|
|
#define TESTS_T_API_H 1
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
/*
|
|
*
|
|
* Result codes.
|
|
*
|
|
*/
|
|
|
|
#define T_PASS 0x1
|
|
#define T_FAIL 0x2
|
|
#define T_UNRESOLVED 0x3
|
|
#define T_UNSUPPORTED 0x4
|
|
#define T_UNTESTED 0x5
|
|
|
|
/*
|
|
*
|
|
* 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;
|
|
|
|
extern int T_debug;
|
|
extern testspec_t T_testlist[];
|
|
|
|
void
|
|
t_assert(const char *component, int anum, int class, const char *what, ...);
|
|
|
|
void
|
|
t_info(const char *format, ...);
|
|
|
|
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);
|
|
|
|
#endif /* TESTS_T_API_H */
|
|
|