improve test output++

This commit is contained in:
Timo Kreuzer 2023-05-26 12:37:35 +03:00
parent 24ec811bb0
commit 10a3a7be72

View file

@ -290,10 +290,10 @@ VOID KmtFreeGuarded(PVOID Pointer);
} \ } \
_SEH2_END; \ _SEH2_END; \
KmtOk((ExceptionStatus) == (ExpectedStatus), \ KmtOk((ExceptionStatus) == (ExpectedStatus), \
__FILE__ ":" #Line ":", \ __FILE__ ":", \
"ExceptionStatus = 0x%08lx, expected " \ "%lu: ExceptionStatus = 0x%08lx, expected " \
#ExpectedStatus " (0x%08lx)\n", \ #ExpectedStatus " (0x%08lx)\n", \
ExceptionStatus, ExpectedStatus); \ Line, ExceptionStatus, ExpectedStatus); \
} }
#define KmtEndSeh(ExpectedStatus) KmtEndSeh_(__LINE__, ExpectedStatus) #define KmtEndSeh(ExpectedStatus) KmtEndSeh_(__LINE__, ExpectedStatus)