diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-18 11:11:55 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-23 16:53:46 +0200 |
commit | 6ad978e9f40d3edfd9f4a86b4a60e3523eff08fe (patch) | |
tree | 9b6b290589d6d2818b29a3875738ce419843aa06 /scripts | |
parent | 644c6869d335e10bc10b8399646f767763c4977f (diff) |
coccinelle: add g_assert_cmp* to macro file
This helps applying semantic patches to unit tests.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/cocci-macro-file.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/cocci-macro-file.h b/scripts/cocci-macro-file.h index eceb4be73f..9f2e72e7e1 100644 --- a/scripts/cocci-macro-file.h +++ b/scripts/cocci-macro-file.h @@ -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) |