mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
74dcb2535d
commit
6ceefb931f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue