diff options
Diffstat (limited to 'lib/torture/torture.h')
-rw-r--r-- | lib/torture/torture.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/torture/torture.h b/lib/torture/torture.h index b90af843858..2d1ecccb936 100644 --- a/lib/torture/torture.h +++ b/lib/torture/torture.h @@ -500,6 +500,16 @@ void torture_result(struct torture_context *test, }\ } while(0) +#define torture_assert_sid_equal(torture_ctx,got,expected,cmt)\ + do { struct dom_sid *__got = (got), *__expected = (expected); \ + if (!dom_sid_equal(__got, __expected)) { \ + torture_result(torture_ctx, TORTURE_FAIL, \ + __location__": "#got" was %s, expected %s: %s", \ + dom_sid_string(torture_ctx, __got), dom_sid_string(torture_ctx, __expected), cmt); \ + return false; \ + } \ + } while(0) + #define torture_assert_not_null(torture_ctx,got,cmt)\ do { void *__got = (got); \ if (__got == NULL) { \ |