chiark / gitweb /
Remove "junk".
[adns.git] / regress / harness.h.m4
1 m4_dnl harness.h.m4
2 m4_dnl (part of complex test harness, not of the library)
3 m4_dnl - function and other declarations
4
5 m4_dnl  This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson
6 m4_dnl  
7 m4_dnl  This program is free software; you can redistribute it and/or modify
8 m4_dnl  it under the terms of the GNU General Public License as published by
9 m4_dnl  the Free Software Foundation; either version 2, or (at your option)
10 m4_dnl  any later version.
11 m4_dnl  
12 m4_dnl  This program is distributed in the hope that it will be useful,
13 m4_dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 m4_dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 m4_dnl  GNU General Public License for more details.
16 m4_dnl  
17 m4_dnl  You should have received a copy of the GNU General Public License
18 m4_dnl  along with this program; if not, write to the Free Software Foundation,
19 m4_dnl  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
20
21 m4_include(hmacros.i4)
22
23 #ifndef HARNESS_H_INCLUDED
24 #define HARNESS_H_INCLUDED
25
26 #include <sys/time.h>
27 #include <sys/socket.h>
28 #include <sys/uio.h>
29 #include <unistd.h>
30 #include <sys/poll.h>
31
32 #include "internal.h"
33
34 /* We override several system calls with #define's */
35
36 hm_create_proto_h
37 m4_define(`hm_syscall', `int H$1(hm_args_massage($3,void));')
38 m4_include(`hsyscalls.i4')
39
40 int Hwritev(int fd, const struct iovec *vector, size_t count);
41 int Hgettimeofday(struct timeval *tv, struct timezone *tz);
42
43 /* There is a Q function (Q for Question) for each such syscall;
44  * it constructs a string representing the call, and calls Q_str
45  * on it, or constructs it in vb and calls Q_vb;
46  */
47
48 hm_create_proto_q
49 m4_define(`hm_syscall', `void Q$1(hm_args_massage($3,void));')
50 m4_include(`hsyscalls.i4')
51
52 void Q_vb(void);
53
54 /* General help functions */
55
56 void Tfailed(const char *why);
57 void Toutputerr(void);
58 void Tnomem(void);
59 void Tfsyscallr(const char *fmt, ...) PRINTFFORMAT(1,2);
60 void Tensureoutputfile(void);
61 void Tmust(const char *call, const char *arg, int cond);
62
63 void Tvbf(const char *fmt, ...) PRINTFFORMAT(1,2);
64 void Tvbvf(const char *fmt, va_list al);
65 void Tvbfdset(int max, const fd_set *set);
66 void Tvbpollfds(const struct pollfd *fds, int nfds);
67 void Tvbaddr(const struct sockaddr *addr, int addrlen);
68 void Tvbbytes(const void *buf, int len);
69 void Tvberrno(int e);
70 void Tvba(const char *str);
71
72 /* Shared globals */
73
74 extern vbuf vb;
75 extern struct timeval currenttime;
76 extern const struct Terrno { const char *n; int v; } Terrnos[];
77   
78 #endif