summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2025-04-17 17:10:59 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2025-04-22 13:50:57 +0200
commit3b744b7a5e365caa1b0efde7a530c95dccf10a8f (patch)
tree67d6f62e12d433a4fddfd1a2b68302fec59df662 /test
parent8b57548de9836fce3663b99d0140146f12668e8c (diff)
downloadjustbuild-3b744b7a5e365caa1b0efde7a530c95dccf10a8f.tar.gz
FileSystemManager: Always copy directories recursively
Diffstat (limited to 'test')
-rw-r--r--test/buildtool/file_system/file_system_manager.test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/buildtool/file_system/file_system_manager.test.cpp b/test/buildtool/file_system/file_system_manager.test.cpp
index 86334faf..805d8bc1 100644
--- a/test/buildtool/file_system/file_system_manager.test.cpp
+++ b/test/buildtool/file_system/file_system_manager.test.cpp
@@ -743,7 +743,7 @@ TEST_CASE("CopyDirectoryImpl", "[file_system]") {
CHECK(FileSystemManager::WriteFile("boo", "a/bb.txt"));
// Test copy
- CHECK(FileSystemManager::CopyDirectoryImpl("a", to, true));
+ CHECK(FileSystemManager::CopyDirectoryImpl("a", to));
// Result should be in tmp-dir now
CHECK(FileSystemManager::IsDirectory(to));