diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-01 16:27:51 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-01 16:27:51 +0200 |
| commit | eaec1833e978d2443ffdfc226fff60d0b5571cb6 (patch) | |
| tree | 10eed22698de1fe6fa02ca6f5067bf38626d51e8 /kernel/src/main.tests.cpp | |
| parent | 38bdee2ba829999862e37999dc212055ebedc4c6 (diff) | |
| download | teachos-eaec1833e978d2443ffdfc226fff60d0b5571cb6.tar.xz teachos-eaec1833e978d2443ffdfc226fff60d0b5571cb6.zip | |
kernel/tests: move initialization to a listener
Diffstat (limited to 'kernel/src/main.tests.cpp')
| -rw-r--r-- | kernel/src/main.tests.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/kernel/src/main.tests.cpp b/kernel/src/main.tests.cpp deleted file mode 100644 index b3ae142..0000000 --- a/kernel/src/main.tests.cpp +++ /dev/null @@ -1,38 +0,0 @@ -#include "kapi/interrupts.hpp" -#include "kapi/memory.hpp" -#include <kapi/cio.hpp> -#include <kapi/cpu.hpp> - -#include <catch2/catch_session.hpp> - -auto main(int argc, char ** argv) -> int -{ - auto session = Catch::Session{}; - - if (auto result = session.applyCommandLine(argc, argv); result != 0) - { - return result; - } - - auto const & config = session.configData(); - auto skip_init = config.listTests || // - config.listTags || // - config.listReporters || // - config.listListeners || // - config.showHelp; - - if (!skip_init) - { - kapi::cio::init(); - kapi::cpu::init(); - kapi::interrupts::enable(); - - kapi::memory::init(); - // note: no kernel heap is created, since we are in the test environment. Nonetheless, we still initialize the - // memory subsystem, so that components that rely on it can be tested. No component must ever rely on the heap - // allocator directly, rather they have to go through the new and delete. However, some components may use the frame - // allocator and page mapper in order to perform their tasks. - } - - return session.run(); -} |
