summary refs log tree commit diff stats
path: root/tests/check-qobject.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2020-12-11 18:11:52 +0100
committerMarkus Armbruster <armbru@redhat.com>2020-12-19 10:39:41 +0100
commit4ac76ba414ecb94f086d73621775d8b38b6f0a43 (patch)
tree14a3da0ae64a62bcbe23d122e34b750902284b27 /tests/check-qobject.c
parent18cf67c5e1d6e23042b752831aa6f9e4e478787b (diff)
downloadfocaccia-qemu-4ac76ba414ecb94f086d73621775d8b38b6f0a43.tar.gz
focaccia-qemu-4ac76ba414ecb94f086d73621775d8b38b6f0a43.zip
qobject: Make QString immutable
The functions to modify a QString's string are all unused now.  Drop
them, and make the string immutable.  Saves 16 bytes per QString on my
system.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20201211171152.146877-21-armbru@redhat.com>
Diffstat (limited to 'tests/check-qobject.c')
-rw-r--r--tests/check-qobject.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/check-qobject.c b/tests/check-qobject.c
index 6b6deaeb8b..c1713d15af 100644
--- a/tests/check-qobject.c
+++ b/tests/check-qobject.c
@@ -155,8 +155,7 @@ static void qobject_is_equal_string_test(void)
     str_case = qstring_from_str("Foo");
 
     /* Should yield "foo" */
-    str_built = qstring_from_substr("form", 0, 2);
-    qstring_append_chr(str_built, 'o');
+    str_built = qstring_from_substr("buffoon", 3, 6);
 
     check_unequal(str_base, str_whitespace_0, str_whitespace_1,
                   str_whitespace_2, str_whitespace_3, str_case);