pacemaker 3.0.1-16e74fc4da
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
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 General Public License version 2
7 * or later (GPLv2+) WITHOUT ANY WARRANTY.
8 */
9
10#include <crm_internal.h>
11
13
14static void
15any_set(void **state) {
16 assert_false(pcmk_any_flags_set(0x000, 0x000));
17 assert_false(pcmk_any_flags_set(0x000, 0x001));
18 assert_true(pcmk_any_flags_set(0x00f, 0x001));
19 assert_false(pcmk_any_flags_set(0x00f, 0x010));
20 assert_true(pcmk_any_flags_set(0x00f, 0x011));
21 assert_false(pcmk_any_flags_set(0x000, 0x000));
22 assert_false(pcmk_any_flags_set(0x00f, 0x000));
23}
24
25PCMK__UNIT_TEST(NULL, NULL,
26 cmocka_unit_test(any_set))
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)