#ifndef KMI_TESTS_H #define KMI_TESTS_H #include #include #include "sys.h" #include "start.h" #include "printf.h" #define fail(x, ...)\ printf("FAIL: " x, ## __VA_ARGS__) #define check(x, y, ...)\ if (!(x)) {\ fail(y, ##__VA_ARGS__);\ sys_poweroff(SYS_SHUTDOWN);\ } #define ok()\ printf("OK\n");\ sys_poweroff(SYS_SHUTDOWN) #endif /* KMI_TESTS_H */