Lines Matching full:string
21 src->string = g_strdup("Hello"); in test_clone_struct()
28 g_assert(dst->string != src->string); in test_clone_struct()
29 g_assert_cmpstr(dst->string, ==, "Hello"); in test_clone_struct()
105 src->string = g_strdup("abc"); in test_clone_complex1()
113 g_assert_cmpstr(dst->string, ==, "abc"); in test_clone_complex1()
132 src->alt->u.udfu.string = NULL; in test_clone_complex2()
143 g_assert_cmpstr(dst->alt->u.udfu.string, ==, ""); in test_clone_complex2()
161 elt->string = g_strdup("three"); in test_clone_complex3()
167 elt->string = g_strdup("two"); in test_clone_complex3()
171 elt->string = g_strdup("one"); in test_clone_complex3()
180 g_assert_cmpstr(elt->string, ==, "one"); in test_clone_complex3()
185 g_assert_cmpstr(elt->string, ==, "two"); in test_clone_complex3()
190 g_assert_cmpstr(elt->string, ==, "three"); in test_clone_complex3()