Home
last modified time | relevance | path

Searched refs:ok_eq_print_ (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rostests/apitests/include/
H A Dapitest.h39 #define ok_eq_print_(file, line, value, expected, spec) ok_(file,line)((value) == (expected), #val… macro
68 #define ok_eq_hex_(file, line, value, expected) ok_eq_print_(file, line, value, expected, "0x%08lx")
69 #define ok_eq_hex64_(file, line, value, expected) ok_eq_print_(file, line, value, expected, "%I64x")
/reactos/modules/rostests/kmtests/npfs/
H A DNpfsHelpers.c434 #define ok_eq_print_(value, expected, spec, FileAndLine) \ macro
436 #define ok_eq_ulong_(value, expected) ok_eq_print_(value, expected, "%lu", FileAndLine)
437 #define ok_eq_ulonglong_(value, expected) ok_eq_print_(value, expected, "%I64u", FileAndLine)
439 #define ok_eq_ulongptr_(value, expected) ok_eq_print_(value, (ULONG_PTR)(expected), "%lu", FileA…
441 #define ok_eq_ulongptr_(value, expected) ok_eq_print_(value, (ULONG_PTR)(expected), "%I64u", Fil…
443 #define ok_eq_hex_(value, expected) ok_eq_print_(value, expected, "0x%08lx", FileAndLine)