Commit 6ceefb931f for qemu.org

commit 6ceefb931fac9d67dd4d8742d406fab63a3c00d1
Author: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Date:   Thu Sep 12 00:38:46 2024 -0700

    tests/unit: replace assert(0) with g_assert_not_reached()

    This patch is part of a series that moves towards a consistent use of
    g_assert_not_reached() rather than an ad hoc mix of different
    assertion mechanisms.

    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
    Message-ID: <20240912073921.453203-14-pierrick.bouvier@linaro.org>
    Signed-off-by: Thomas Huth <thuth@redhat.com>

diff --git a/tests/unit/test-xs-node.c b/tests/unit/test-xs-node.c
index ac94e7ed6c..2f447a73fb 100644
--- a/tests/unit/test-xs-node.c
+++ b/tests/unit/test-xs-node.c
@@ -212,7 +212,7 @@ static void compare_tx(gpointer key, gpointer val, gpointer opaque)
         printf("Comparison failure in TX %u after serdes:\n", tx_id);
         dump_ref("Original", t1->root, 0);
         dump_ref("Deserialised", t2->root, 0);
-        g_assert(0);
+        g_assert_not_reached();
     }
     g_assert(t1->nr_nodes == t2->nr_nodes);
 }
@@ -257,7 +257,7 @@ static void check_serdes(XenstoreImplState *s)
         printf("Comparison failure in main tree after serdes:\n");
         dump_ref("Original", s->root, 0);
         dump_ref("Deserialised", s2->root, 0);
-        g_assert(0);
+        g_assert_not_reached();
     }

     nr_transactions1 = g_hash_table_size(s->transactions);