pacemaker 2.1.4-dc6eb4362e
Scalable High-Availability cluster resource manager
pcmk__set_flags_as_test.c
Go to the documentation of this file.
1/*
2 * Copyright 2020-2021 the Pacemaker project contributors
3 *
4 * The version control history for this file may have further details.
5 *
6 * This source code is licensed under the GNU Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#include <crm_internal.h>
11
12#include <stdarg.h>
13#include <stddef.h>
14#include <stdint.h>
15#include <setjmp.h>
16#include <cmocka.h>
17
18static void
19set_flags(void **state) {
20 assert_int_equal(pcmk__set_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
21 "test", 0x0f0, 0x00f, NULL), 0x0ff);
22 assert_int_equal(pcmk__set_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
23 "test", 0x0f0, 0xf0f, NULL), 0xfff);
24 assert_int_equal(pcmk__set_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
25 "test", 0x0f0, 0xfff, NULL), 0xfff);
26}
27
28int
29main(int argc, char **argv)
30{
31 const struct CMUnitTest tests[] = {
32 cmocka_unit_test(set_flags),
33 };
34
35 cmocka_set_message_output(CM_OUTPUT_TAP);
36 return cmocka_run_group_tests(tests, NULL, NULL);
37}
#define LOG_TRACE
Definition: logging.h:37
int main(int argc, char **argv)