aboutsummaryrefslogtreecommitdiff
path: root/kernel/kapi/filesystem.tests.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-08-26 20:33:56 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-08-26 20:37:48 +0200
commitcd7e75423e2bcdace6ff5fc9fe7d5e8c5d2a0f1f (patch)
treeded8e974e1bb67b802384e29bae04531afc00602 /kernel/kapi/filesystem.tests.cpp
parent03788775fbebbb3669c115b7653af59194b167d3 (diff)
downloadkernel-cd7e75423e2bcdace6ff5fc9fe7d5e8c5d2a0f1f.tar.xz
kernel-cd7e75423e2bcdace6ff5fc9fe7d5e8c5d2a0f1f.zip
kernel: split vfs and filesystem drivers
Diffstat (limited to 'kernel/kapi/filesystem.tests.cpp')
-rw-r--r--kernel/kapi/filesystem.tests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/kapi/filesystem.tests.cpp b/kernel/kapi/filesystem.tests.cpp
index 2144af3a..d23255c3 100644
--- a/kernel/kapi/filesystem.tests.cpp
+++ b/kernel/kapi/filesystem.tests.cpp
@@ -1,6 +1,6 @@
#include <kapi/filesystem.hpp>
-#include <kernel/test_support/filesystem/storage_boot_module_vfs_fixture.hpp>
+#include <kernel/test_support/vfs/storage_boot_module_vfs_fixture.hpp>
#include <kstd/system_error.hpp>
#include <kstd/units.hpp>
@@ -18,7 +18,7 @@ using namespace kstd::units_literals;
// NOLINTBEGIN (readability-magic-numbers)
-SCENARIO_METHOD(kernel::tests::filesystem::storage_boot_module_vfs_fixture, "Kapi filesystem with real images",
+SCENARIO_METHOD(kernel::tests::vfs::storage_boot_module_vfs_fixture, "Kapi filesystem with real images",
"[kapi][filesystem]")
{
auto const image_path_1 = std::filesystem::path{KERNEL_TEST_ASSETS_DIR} / "ext2_1KB_fs.img";
@@ -297,7 +297,7 @@ SCENARIO_METHOD(kernel::tests::filesystem::storage_boot_module_vfs_fixture, "Kap
// NOTE: This must be it's own scenario, because it relies on concrete minor numbers, which in turn depend on global
// singleton state that only resets on a new scenario.
-SCENARIO_METHOD(kernel::tests::filesystem::storage_boot_module_vfs_fixture,
+SCENARIO_METHOD(kernel::tests::vfs::storage_boot_module_vfs_fixture,
"Kapi filesystem resolves a persistent device node to the matching devfs entry", "[kapi][filesystem]")
{
auto image_path = std::filesystem::path{KERNEL_TEST_ASSETS_DIR} / "ext2_1KB_devnode_fs.img";