configure.ac: Change RADIUS library preferences
[monitoring-plugins.git] / tap / tap.h
blobbd817893a1f5ed344e91c524e26ac483821a9a18
1 /*-
2 * Copyright (c) 2004 Nik Clayton
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
27 /* '## __VA_ARGS__' is a gcc'ism. C99 doesn't allow the token pasting
28 and requires the caller to add the final comma if they've ommitted
29 the optional arguments */
30 #ifdef __GNUC__
31 # define ok(e, test, ...) ((e) ? \
32 _gen_result(1, __func__, __FILE__, __LINE__, \
33 test, ## __VA_ARGS__) : \
34 _gen_result(0, __func__, __FILE__, __LINE__, \
35 test, ## __VA_ARGS__))
37 # define ok1(e) ((e) ? \
38 _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
39 _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e))
41 # define pass(test, ...) ok(1, test, ## __VA_ARGS__);
42 # define fail(test, ...) ok(0, test, ## __VA_ARGS__);
44 # define skip_start(test, n, fmt, ...) \
45 do { \
46 if((test)) { \
47 skip(n, fmt, ## __VA_ARGS__); \
48 continue; \
50 #else /* __GNUC__ */
51 /* The original tap.h used to test if __STDC_VERSION__ >= 199901L here. This
52 * doesn't seem to work on HP-UX even though the code compile fine. I'm not
53 * sure how to add an exception here for HP-UX so I just removed the check
54 * for now */
55 # define ok(e, ...) ((e) ? \
56 _gen_result(1, __func__, __FILE__, __LINE__, \
57 __VA_ARGS__) : \
58 _gen_result(0, __func__, __FILE__, __LINE__, \
59 __VA_ARGS__))
61 # define ok1(e) ((e) ? \
62 _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
63 _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e))
65 # define pass(...) ok(1, __VA_ARGS__);
66 # define fail(...) ok(0, __VA_ARGS__);
68 # define skip_start(test, n, ...) \
69 do { \
70 if((test)) { \
71 skip(n, __VA_ARGS__); \
72 continue; \
74 #endif /* __GNUC__ */
76 # define skip_end } while(0);
78 unsigned int _gen_result(int, const char *, char *, unsigned int, char *, ...);
80 int plan_no_plan(void);
81 int plan_skip_all(char *);
82 int plan_tests(unsigned int);
84 unsigned int diag(char *, ...);
86 int skip(unsigned int, char *, ...);
88 void todo_start(char *, ...);
89 void todo_end(void);
91 int exit_status(void);