Skip to content
Snippets Groups Projects
Commit 6ad978e9 authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

coccinelle: add g_assert_cmp* to macro file


This helps applying semantic patches to unit tests.

Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 644c6869
No related branches found
No related tags found
No related merge requests found
......@@ -117,3 +117,9 @@ struct { \
type *tqe_next; /* next element */ \
type **tqe_prev; /* address of previous next element */ \
}
/* From glib */
#define g_assert_cmpint(a, op, b) g_assert(a op b)
#define g_assert_cmpuint(a, op, b) g_assert(a op b)
#define g_assert_cmphex(a, op, b) g_assert(a op b)
#define g_assert_cmpstr(a, op, b) g_assert(strcmp(a, b) op 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment