mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-17 15:12:07 -06:00
qapi: Mechanically convert FOO_lookup[...] to FOO_str(...)
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1503564371-26090-14-git-send-email-armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
5b5f825d44
commit
977c736f80
45 changed files with 121 additions and 121 deletions
|
@ -194,12 +194,12 @@ static void test_visitor_out_enum(TestOutputVisitorData *data,
|
|||
|
||||
str = visitor_get(data);
|
||||
if (data->human) {
|
||||
char *str_human = g_strdup_printf("\"%s\"", EnumOne_lookup[i]);
|
||||
char *str_human = g_strdup_printf("\"%s\"", EnumOne_str(i));
|
||||
|
||||
g_assert_cmpstr(str, ==, str_human);
|
||||
g_free(str_human);
|
||||
} else {
|
||||
g_assert_cmpstr(str, ==, EnumOne_lookup[i]);
|
||||
g_assert_cmpstr(str, ==, EnumOne_str(i));
|
||||
}
|
||||
visitor_reset(data);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue