Title: [278138] trunk/Tools
Revision
278138
Author
stephan.sz...@sony.com
Date
2021-05-26 17:35:38 -0700 (Wed, 26 May 2021)

Log Message

Cleanup temporary directory after TestWTF's FileSystemTests
https://bugs.webkit.org/show_bug.cgi?id=226300

Reviewed by Chris Dumez.

* TestWebKitAPI/Tests/WTF/FileSystem.cpp: move to deleteNonEmptyDirectory during test cleanup

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (278137 => 278138)


--- trunk/Tools/ChangeLog	2021-05-27 00:10:35 UTC (rev 278137)
+++ trunk/Tools/ChangeLog	2021-05-27 00:35:38 UTC (rev 278138)
@@ -1,3 +1,12 @@
+2021-05-26  Stephan Szabo  <stephan.sz...@sony.com>
+
+        Cleanup temporary directory after TestWTF's FileSystemTests
+        https://bugs.webkit.org/show_bug.cgi?id=226300
+
+        Reviewed by Chris Dumez.
+
+        * TestWebKitAPI/Tests/WTF/FileSystem.cpp: move to deleteNonEmptyDirectory during test cleanup
+
 2021-05-26  Don Olmstead  <don.olmst...@sony.com>
 
         [CMake] Support USE_ANGLE_EGL on additional platforms

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp (278137 => 278138)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp	2021-05-27 00:10:35 UTC (rev 278137)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp	2021-05-27 00:35:38 UTC (rev 278138)
@@ -91,7 +91,7 @@
     {
         FileSystem::deleteFile(m_tempFilePath);
         FileSystem::deleteFile(m_tempFileSymlinkPath);
-        FileSystem::deleteEmptyDirectory(m_tempEmptyFolderPath);
+        FileSystem::deleteNonEmptyDirectory(m_tempEmptyFolderPath);
         FileSystem::deleteFile(m_tempEmptyFolderSymlinkPath);
         FileSystem::deleteFile(m_tempEmptyFilePath);
         FileSystem::deleteFile(m_spaceContainingFilePath);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to