diff options
author | Marvin Borner | 2020-11-05 17:30:39 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-05 17:32:53 +0100 |
commit | 63e86f792167e6cc2e9600d00b184a3c83fe7498 (patch) | |
tree | 31e2d583be3ebf34782f6ec37f6c524657c40686 /kernel/inc/test.h | |
parent | 916fca2161e76de67a5106b90baf00a57f2a0512 (diff) |
Added warning flags and fixed them :)
Diffstat (limited to 'kernel/inc/test.h')
-rw-r--r-- | kernel/inc/test.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/kernel/inc/test.h b/kernel/inc/test.h deleted file mode 100644 index 8bd0d41..0000000 --- a/kernel/inc/test.h +++ /dev/null @@ -1,24 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef TEST_H -#define TEST_H - -#include <boot.h> -#include <print.h> -#include <str.h> - -#define a_mag 0x55 -#define b_mag 0x42 - -void pass_or_fail(const char *file_name, int line_num, const char *func, const char *first, - const char *second, int success); - -#define check(exp) pass_or_fail(__FILE__, __LINE__, __func__, #exp, "1", exp); -#define equals(first, second) \ - pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, (first) == (second)); -#define equals_str(first, second) \ - pass_or_fail(__FILE__, __LINE__, __func__, #first, #second, strcmp((first), (second)) == 0); - -void test_all(struct vid_info *vid_info); - -#endif |