summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-07-27 18:44:34 +0200
committerGitHub <noreply@github.com>2023-07-27 18:44:34 +0200
commit17fa9dfc4e6007d497b6ae30f6651aaf38672d88 (patch)
tree5b831d2fbf49fc484637b4fb855316c0c53acc67 /Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
parent8f1b2280ae0ed0e9c8bca5e8e0b4ab9113c7578b (diff)
parent17f2072e1c9221aa38bc9f653ce792b2745f0d91 (diff)
Merge pull request #12046 from AdmiralCurtiss/nand-stats-unit-test
UnitTests: Enable cluster check in FileSystemTest.GetDirectoryStats.
Diffstat (limited to 'Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp')
-rw-r--r--Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
index 5442a66eab..b1e6997e34 100644
--- a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
+++ b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp
@@ -269,8 +269,7 @@ TEST_F(FileSystemTest, GetDirectoryStats)
file->Write(std::vector<u8>(20).data(), 20);
}
// The file should now take up one cluster.
- // TODO: uncomment after the FS code is fixed.
- // check_stats(1u, 2u);
+ check_stats(1u, 2u);
}
// Files need to be explicitly created using CreateFile or CreateDirectory.