summaryrefslogtreecommitdiff
path: root/tests/test-clone-visitor.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2019-03-01 16:40:49 +0100
committerMarkus Armbruster <armbru@redhat.com>2019-03-05 14:43:11 +0100
commitb359f4b203fc8a3cc2967bf55d532dcf05928c8a (patch)
tree8c9e0a0321b0e2daf5385ceaa331983fc9f6ffc4 /tests/test-clone-visitor.c
parent709395f8f627808175307f0c298ce71614fa67d0 (diff)
downloadqemu-b359f4b203fc8a3cc2967bf55d532dcf05928c8a.zip
tests: Rename UserDefNativeListUnion to UserDefListUnion
The lists in UserDefNativeListUnion aren't "native", they're lists of built-in types. The next commit will add a list of a user-defined type. Drop "Native", and adjust the tests using the type. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190301154051.23317-6-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests/test-clone-visitor.c')
-rw-r--r--tests/test-clone-visitor.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/test-clone-visitor.c b/tests/test-clone-visitor.c
index 9aeaf86a07..5e1e8b2f5e 100644
--- a/tests/test-clone-visitor.c
+++ b/tests/test-clone-visitor.c
@@ -63,7 +63,7 @@ static void test_clone_alternate(void)
qapi_free_AltEnumBool(s_dst);
}
-static void test_clone_native_list(void)
+static void test_clone_list_union(void)
{
uint8List *src, *dst;
uint8List *tmp = NULL;
@@ -102,18 +102,18 @@ static void test_clone_empty(void)
static void test_clone_complex1(void)
{
- UserDefNativeListUnion *src, *dst;
+ UserDefListUnion *src, *dst;
- src = g_new0(UserDefNativeListUnion, 1);
- src->type = USER_DEF_NATIVE_LIST_UNION_KIND_STRING;
+ src = g_new0(UserDefListUnion, 1);
+ src->type = USER_DEF_LIST_UNION_KIND_STRING;
- dst = QAPI_CLONE(UserDefNativeListUnion, src);
+ dst = QAPI_CLONE(UserDefListUnion, src);
g_assert(dst);
g_assert_cmpint(dst->type, ==, src->type);
g_assert(!dst->u.string.data);
- qapi_free_UserDefNativeListUnion(src);
- qapi_free_UserDefNativeListUnion(dst);
+ qapi_free_UserDefListUnion(src);
+ qapi_free_UserDefListUnion(dst);
}
static void test_clone_complex2(void)
@@ -192,7 +192,7 @@ int main(int argc, char **argv)
g_test_add_func("/visitor/clone/struct", test_clone_struct);
g_test_add_func("/visitor/clone/alternate", test_clone_alternate);
- g_test_add_func("/visitor/clone/native_list", test_clone_native_list);
+ g_test_add_func("/visitor/clone/list_union", test_clone_list_union);
g_test_add_func("/visitor/clone/empty", test_clone_empty);
g_test_add_func("/visitor/clone/complex1", test_clone_complex1);
g_test_add_func("/visitor/clone/complex2", test_clone_complex2);