summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-04-02 08:14:36 +0200
committerGitHub <noreply@github.com>2025-04-02 08:14:36 +0200
commit5129ac16ddd5fb8362eb2fbd123e28d2b3e4c90f (patch)
tree2fde230004e377f734983484f8e12fb0414a1668 /public
parent25dd194903b3ccfe4461fe189a04d902da93ac8f (diff)
parent6c7e5ebc003a0bc4f98c23a8f9754b273a6e3a28 (diff)
Merge pull request #7 from amlel-el-mahrouss/dev
boot/net: rename Boot.S files, clarify EEPROM implication, and prep UDP read
Diffstat (limited to 'public')
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/KernelTest.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/public/frameworks/KernelTest.fwrk/headers/KernelTest.h b/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
index 30fb3ce6..966672bb 100644
--- a/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
+++ b/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
@@ -15,20 +15,20 @@
#define KT_TEST_SUCCESS (0)
-#define KT_DECL_TEST(NAME, FN) \
+#define KT_DECL_TEST(NAME, FN) \
class KT_##NAME final \
- { \
- public: \
- void Run(); \
- const char* ToString(); \
- }; \
- inline void KT_##NAME::Run() \
- { \
- MUST_PASS(FN() == true); \
- } \
+ { \
+ public: \
+ void Run(); \
+ const char* ToString(); \
+ }; \
+ inline void KT_##NAME::Run() \
+ { \
+ MUST_PASS(FN() == true); \
+ } \
inline const char* KT_##NAME::ToString() \
- { \
- return #FN; \
+ { \
+ return #FN; \
}
KT_DECL_TEST(ALWAYS_BREAK, []() -> bool { return false; });