From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fppEx-0003kn-1P for qemu-devel@nongnu.org; Wed, 15 Aug 2018 02:25:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fppEr-0000A4-Pm for qemu-devel@nongnu.org; Wed, 15 Aug 2018 02:25:06 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:60834 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fppEr-00007f-Cw for qemu-devel@nongnu.org; Wed, 15 Aug 2018 02:25:01 -0400 From: Markus Armbruster References: <1534258018-22859-1-git-send-email-thuth@redhat.com> <1534258018-22859-3-git-send-email-thuth@redhat.com> <87a7pou95a.fsf@dusky.pond.sub.org> <44875a85-ddcf-6a81-ca42-24fe9b268b93@redhat.com> Date: Wed, 15 Aug 2018 08:24:56 +0200 In-Reply-To: <44875a85-ddcf-6a81-ca42-24fe9b268b93@redhat.com> (Thomas Huth's message of "Wed, 15 Aug 2018 08:00:53 +0200") Message-ID: <878t58p2o7.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH 2/6] tests/device-introspection: Check that the qom-tree and qtree do not change List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Huth Cc: "Michael S. Tsirkin" , Juan Quintela , qemu-devel@nongnu.org, Philippe =?utf-8?Q?Mathie?= =?utf-8?Q?u-Daud=C3=A9?= , Paolo Bonzini , "Dr. David Alan Gilbert" Thomas Huth writes: > On 08/14/2018 07:53 PM, Markus Armbruster wrote: >> Thomas Huth writes: > [...] >>> @@ -115,10 +122,18 @@ static void test_one_device(const char *type) >>> >>> /* >>> * Some devices leave dangling pointers in QOM behind. >>> - * "info qom-tree" has a good chance at crashing then >>> + * "info qom-tree" or "info qtree" have a good chance at crashing then. >>> + * Also make sure that the tree did not change. >>> */ >>> - qom_tree = hmp("info qom-tree"); >>> - g_free(qom_tree); >>> + qom_tree_end = hmp("info qom-tree"); >>> + g_assert_cmpstr(qom_tree_start, ==, qom_tree_end); >>> + g_free(qom_tree_start); >>> + g_free(qom_tree_end); >>> + >>> + qtree_end = hmp("info qtree"); >>> + g_assert_cmpstr(qtree_start, ==, qtree_end); >>> + g_free(qtree_start); >>> + g_free(qtree_end); >>> } >>> >>> static void test_device_intro_list(void) >> >> Output of "info qom-tree" depends on hash table iteration order, but >> that could almost be considered a feature here. > > Currently, it seems to work fine. If we hit a false positive with > ordering later, we still can add some code for sorting the output, I guess? I'm fine with comparing output of info qom-tree and info qtree. I figure the most likely cause for a change of order would be a series of QOM tree modifications that cancels out. There should be *no* QOM tree modifications. Thus, "almost a feature".