pacemaker  2.1.2-ada5c3b36
Scalable High-Availability cluster resource manager
pcmk_any_flags_set_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 
18 static void
19 any_set(void **state) {
20  assert_false(pcmk_any_flags_set(0x000, 0x000));
21  assert_false(pcmk_any_flags_set(0x000, 0x001));
22  assert_true(pcmk_any_flags_set(0x00f, 0x001));
23  assert_false(pcmk_any_flags_set(0x00f, 0x010));
24  assert_true(pcmk_any_flags_set(0x00f, 0x011));
25  assert_false(pcmk_any_flags_set(0x000, 0x000));
26  assert_false(pcmk_any_flags_set(0x00f, 0x000));
27 }
28 
29 int
30 main(int argc, char **argv)
31 {
32  const struct CMUnitTest tests[] = {
33  cmocka_unit_test(any_set),
34  };
35 
36  cmocka_set_message_output(CM_OUTPUT_TAP);
37  return cmocka_run_group_tests(tests, NULL, NULL);
38 }
int main(int argc, char **argv)