mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-30 22:03:54 -06:00
qobject: Drop qstring_get_try_str()
No users left outside tests/, and the ones in tests/ can just as well use qstring_get_str(). Do that, and drop the function. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20201211171152.146877-14-armbru@redhat.com>
This commit is contained in:
parent
808ac3657e
commit
b3119b0814
3 changed files with 5 additions and 17 deletions
|
@ -89,7 +89,7 @@ static void escaped_string(void)
|
|||
for (j = 0; j < 2; j++) {
|
||||
if (test_cases[i].utf8_out) {
|
||||
cstr = from_json_str(test_cases[i].json_in, j, &error_abort);
|
||||
g_assert_cmpstr(qstring_get_try_str(cstr),
|
||||
g_assert_cmpstr(qstring_get_str(cstr),
|
||||
==, test_cases[i].utf8_out);
|
||||
if (!test_cases[i].skip) {
|
||||
jstr = to_json_str(cstr);
|
||||
|
@ -751,7 +751,7 @@ static void utf8_string(void)
|
|||
/* Parse @json_in, expect @utf8_out */
|
||||
if (utf8_out) {
|
||||
str = from_json_str(json_in, j, &error_abort);
|
||||
g_assert_cmpstr(qstring_get_try_str(str), ==, utf8_out);
|
||||
g_assert_cmpstr(qstring_get_str(str), ==, utf8_out);
|
||||
qobject_unref(str);
|
||||
} else {
|
||||
str = from_json_str(json_in, j, NULL);
|
||||
|
@ -782,7 +782,7 @@ static void utf8_string(void)
|
|||
/* Parse @json_out right back, unless it has replacements */
|
||||
if (!strstr(json_out, "\\uFFFD")) {
|
||||
str = from_json_str(json_out, j, &error_abort);
|
||||
g_assert_cmpstr(qstring_get_try_str(str), ==, utf8_in);
|
||||
g_assert_cmpstr(qstring_get_str(str), ==, utf8_in);
|
||||
qobject_unref(str);
|
||||
}
|
||||
}
|
||||
|
@ -1021,9 +1021,8 @@ static void interpolation_valid(void)
|
|||
|
||||
/* string */
|
||||
|
||||
qstr = qobject_to(QString,
|
||||
qobject_from_jsonf_nofail("%s", value_s));
|
||||
g_assert_cmpstr(qstring_get_try_str(qstr), ==, value_s);
|
||||
qstr = qobject_to(QString, qobject_from_jsonf_nofail("%s", value_s));
|
||||
g_assert_cmpstr(qstring_get_str(qstr), ==, value_s);
|
||||
qobject_unref(qstr);
|
||||
|
||||
/* object */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue