2 * collectd - src/tests/macros.h
3 * Copyright (C) 2013 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); \
46 #define OK(cond) OK1(cond, #cond)
48 #define STREQ(expect, actual) do { \
49 if (strcmp (expect, actual) != 0) { \
50 printf ("not ok %i - %s incorrect: expected \"%s\", got \"%s\"\n", \
51 ++check_count__, #actual, expect, actual); \
54 printf ("ok %i - %s evaluates to \"%s\"\n", ++check_count__, #actual, expect); \
57 #define CHECK_NOT_NULL(expr) do { \
60 OK1(ptr_ != NULL, #expr); \
63 #define CHECK_ZERO(expr) do { \
65 status_ = (long) (expr); \
66 OK1(status_ == 0L, #expr); \