1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4:torture/smb2: improve error handling in durable_open.c

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>
This commit is contained in:
Stefan Metzmacher 2024-08-30 14:22:24 +02:00
parent 9ad287ed9c
commit e65e1326a0

View File

@ -28,34 +28,17 @@
#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_VAL(v, correct) \
torture_assert_u64_equal_goto(tctx, v, correct, ret, done, __location__)
#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_VAL(v, incorrect) \
torture_assert_u64_not_equal_goto(tctx, v, incorrect, ret, done, __location__)
#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_NOT_NULL(p) \
torture_assert_not_null_goto(tctx, p, ret, done, __location__)
#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_STATUS(status, correct) \
torture_assert_ntstatus_equal_goto(tctx, status, correct, ret, done, __location__)
#define CHECK_CREATED(__io, __created, __attribute) \
do { \