]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:torture/smb2: improve error handling in durable_open.c
authorStefan Metzmacher <metze@samba.org>
Fri, 30 Aug 2024 12:22:24 +0000 (14:22 +0200)
committerStefan Metzmacher <metze@samba.org>
Thu, 10 Oct 2024 12:47:33 +0000 (12:47 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15649
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15651

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source4/torture/smb2/durable_open.c

index cd07b330484e7a230daa84f518360f16b6e72dff..8299995beb993da195d748046c0cff8d30179475 100644 (file)
 #include "torture/smb2/proto.h"
 #include "../libcli/smb/smbXcli_base.h"
 
-#define CHECK_VAL(v, correct) do { \
-       if ((v) != (correct)) { \
-               torture_result(tctx, TORTURE_FAIL, "(%s): wrong value for %s got 0x%llx - should be 0x%llx\n", \
-                               __location__, #v, (unsigned long long)v, (unsigned long long)correct); \
-               ret = false; \
-       }} while (0)
-
-#define CHECK_NOT_VAL(v, incorrect) do { \
-       if ((v) == (incorrect)) { \
-               torture_result(tctx, TORTURE_FAIL, "(%s): wrong value for %s got 0x%llx - should not be 0x%llx\n", \
-                               __location__, #v, (unsigned long long)v, (unsigned long long)incorrect); \
-               ret = false; \
-       }} while (0)
-
-#define CHECK_NOT_NULL(p) do { \
-       if ((p) == NULL) { \
-               torture_result(tctx, TORTURE_FAIL, "(%s): %s is NULL but it should not be.\n", \
-                               __location__, #p); \
-               ret = false; \
-       }} while (0)
-
-#define CHECK_STATUS(status, correct) do { \
-       if (!NT_STATUS_EQUAL(status, correct)) { \
-               torture_result(tctx, TORTURE_FAIL, __location__": Incorrect status %s - should be %s", \
-                      nt_errstr(status), nt_errstr(correct)); \
-               ret = false; \
-               goto done; \
-       }} while (0)
+#define CHECK_VAL(v, correct) \
+       torture_assert_u64_equal_goto(tctx, v, correct, ret, done, __location__)
+
+#define CHECK_NOT_VAL(v, incorrect) \
+       torture_assert_u64_not_equal_goto(tctx, v, incorrect, ret, done, __location__)
+
+#define CHECK_NOT_NULL(p) \
+       torture_assert_not_null_goto(tctx, p, ret, done, __location__)
+
+#define CHECK_STATUS(status, correct) \
+       torture_assert_ntstatus_equal_goto(tctx, status, correct, ret, done, __location__)
 
 #define CHECK_CREATED(__io, __created, __attribute)                    \
        do {                                                            \