diff options
author | dzwdz | 2021-09-20 20:32:58 +0200 |
---|---|---|
committer | dzwdz | 2021-09-20 20:32:58 +0200 |
commit | d192b15ee05b6d79c1503eb296fcab693a05dced (patch) | |
tree | 2030e86317f954f67a4e3c4fc0c61798d5555ab2 /src/kernel/tests | |
parent | 6371724809b057b25a4efd6c022e7d95068c42f1 (diff) |
create a few specialized panic()s
thanks to this i can tell which ones are placeholders, and which ones
should stay
Diffstat (limited to 'src/kernel/tests')
-rw-r--r-- | src/kernel/tests/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/tests/main.c b/src/kernel/tests/main.c index aed7d6a..f9c9413 100644 --- a/src/kernel/tests/main.c +++ b/src/kernel/tests/main.c @@ -11,5 +11,5 @@ void tests_all(void) { tests_vfs(); if (_did_tests_fail) - panic(); + panic_invalid_state(); } |