Home
last modified time | relevance | path

Searched refs:b_src (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/tests/unit/
H A Dtest-clone-visitor.c41 AltEnumBool *b_src, *s_src, *b_dst, *s_dst; in test_clone_alternate() local
43 b_src = g_new0(AltEnumBool, 1); in test_clone_alternate()
44 b_src->type = QTYPE_QBOOL; in test_clone_alternate()
45 b_src->u.b = true; in test_clone_alternate()
50 b_dst = QAPI_CLONE(AltEnumBool, b_src); in test_clone_alternate()
52 g_assert_cmpint(b_dst->type, ==, b_src->type); in test_clone_alternate()
53 g_assert_cmpint(b_dst->u.b, ==, b_src->u.b); in test_clone_alternate()
59 qapi_free_AltEnumBool(b_src); in test_clone_alternate()