2 * collectd - src/tests/macros.h
3 * Copyright (C) 2013-2015 Florian octo Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian octo Forster <octo at collectd.org>
27 static int fail_count__ = 0;
28 static int check_count__ = 0;
30 #define DEF_TEST(func) static int test_##func ()
32 #define RUN_TEST(func) do { \
34 printf ("Testing %s ...\n", #func); \
35 status = test_ ## func (); \
36 printf ("%s.\n", (status == 0) ? "Success" : "FAILURE"); \
37 if (status != 0) { fail_count__++; } \
40 #define END_TEST exit ((fail_count__ == 0) ? 0 : 1);
42 #define OK1(cond, text) do { \
43 _Bool result = (cond); \
44 printf ("%s %i - %s\n", result ? "ok" : "not ok", ++check_count__, text); \
45 if (!result) { return -1; } \
47 #define OK(cond) OK1(cond, #cond)
49 #define STREQ(expect, actual) do { \
50 if (strcmp (expect, actual) != 0) { \
51 printf ("not ok %i - %s incorrect: expected \"%s\", got \"%s\"\n", \
52 ++check_count__, #actual, expect, actual); \
55 printf ("ok %i - %s evaluates to \"%s\"\n", ++check_count__, #actual, expect); \
58 #define EXPECT_INTEQ(expect, actual) do { \
59 if ((expect) != (actual)) {\
60 printf ("not ok %i - %s incorrect: expected %d, got %d\n", \
61 ++check_count__, #actual, expect, actual); \
64 printf ("ok %i - %s evaluates to %d\n", ++check_count__, #actual, expect); \
67 #define DBLEQ(expect, actual) do { \
68 double e = (expect); double a = (actual); \
69 if (isnan (e) && !isnan (a)) { \
70 printf ("not ok %i - %s incorrect: expected %.15g, got %.15g\n", \
71 ++check_count__, #actual, e, a); \
73 } else if (!isnan (e) && (((e-a) < -1e-12) || ((e-a) > 1e-12))) { \
74 printf ("not ok %i - %s incorrect: expected %.15g, got %.15g\n", \
75 ++check_count__, #actual, e, a); \
78 printf ("ok %i - %s evaluates to %.15g\n", ++check_count__, #actual, e); \
81 #define CHECK_NOT_NULL(expr) do { \
84 OK1(ptr_ != NULL, #expr); \
87 #define CHECK_ZERO(expr) do { \
89 status_ = (long) (expr); \
90 OK1(status_ == 0L, #expr); \