summaryrefslogtreecommitdiffhomepage
path: root/public/frameworks/KernelTest.fwrk/headers
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 07:38:52 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 07:42:26 +0100
commit36dee4f0d8ea806b2f061ed66a89e812ab007ed2 (patch)
tree8fe0f6895abb96eb40ee390d6411099b4decf489 /public/frameworks/KernelTest.fwrk/headers
parentf7023f6a08e117d483b5928fd4301062a3384abf (diff)
feat: test: Add `kout` test and rename DeviceInterface to IDevice in KernelKit.
introduce UserPtr and unburden vettable by removing the IVettable helper. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/frameworks/KernelTest.fwrk/headers')
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/TestCase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/frameworks/KernelTest.fwrk/headers/TestCase.h b/public/frameworks/KernelTest.fwrk/headers/TestCase.h
index 2dcc56ef..077fb960 100644
--- a/public/frameworks/KernelTest.fwrk/headers/TestCase.h
+++ b/public/frameworks/KernelTest.fwrk/headers/TestCase.h
@@ -36,7 +36,7 @@
auto ret = FN() == YES; \
if (!ret) { \
PrintOut(nullptr, "[KERNEL-TEST] TEST FAILED!"); \
- MUST_PASS(ret); \
+ KT_MUST_PASS(ret, ret, true); \
} \
} \
inline const Char* KTTestCase##NAME::ToString() { \