Fix build failure due to unused variable left-over from simplification
[network-manager-openvpn.git] / nm-test-helpers.h
1 /* NetworkManager -- Network link manager
2  *
3  * Dan Williams <dcbw@redhat.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * (C) Copyright 2008 Red Hat, Inc.
20  */
21
22 #ifndef NM_TEST_HELPERS_H
23 #define NM_TEST_HELPERS_H
24
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <stdarg.h>
28
29 static void
30 FAIL(const char *test_name, const char *fmt, ...)
31 {
32         va_list args;
33         char buf[500];
34
35         snprintf (buf, 500, "FAIL: (%s) %s\n", test_name, fmt);
36
37         va_start (args, fmt);
38         vfprintf (stderr, buf, args);
39         va_end (args);
40         _exit (1);
41 }
42
43 #define ASSERT(x, test_name, fmt, ...) \
44 { \
45         if (!(x)) { \
46                 FAIL (test_name, fmt, ## __VA_ARGS__); \
47         } \
48 }
49
50 #endif /* NM_TEST_HELPERS_H */
51