pacemaker 2.1.4-dc6eb4362e
Scalable High-Availability cluster resource manager
pcmk__btoa_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
19btoa(void **state) {
20 assert_string_equal(pcmk__btoa(false), "false");
21 assert_string_equal(pcmk__btoa(true), "true");
22 assert_string_equal(pcmk__btoa(1 == 0), "false");
23}
24
25int
26main(int argc, char **argv)
27{
28 const struct CMUnitTest tests[] = {
29 cmocka_unit_test(btoa),
30 };
31
32 cmocka_set_message_output(CM_OUTPUT_TAP);
33 return cmocka_run_group_tests(tests, NULL, NULL);
34}
int main(int argc, char **argv)