Page MenuHomeClusterLabs Projects

pcmk_any_flags_set_test.c
No OneTemporary

pcmk_any_flags_set_test.c

/*
* Copyright 2020-2021 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#include <crm_internal.h>
#include <crm/common/unittest_internal.h>
static void
any_set(void **state) {
assert_false(pcmk_any_flags_set(0x000, 0x000));
assert_false(pcmk_any_flags_set(0x000, 0x001));
assert_true(pcmk_any_flags_set(0x00f, 0x001));
assert_false(pcmk_any_flags_set(0x00f, 0x010));
assert_true(pcmk_any_flags_set(0x00f, 0x011));
assert_false(pcmk_any_flags_set(0x000, 0x000));
assert_false(pcmk_any_flags_set(0x00f, 0x000));
}
PCMK__UNIT_TEST(NULL, NULL,
cmocka_unit_test(any_set))

File Metadata

Mime Type
text/x-c
Expires
Sat, Oct 25, 2:04 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2610202
Default Alt Text
pcmk_any_flags_set_test.c (819 B)

Event Timeline