Changeset 277315 in webkit
- Timestamp:
- May 10, 2021, 7:14:57 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/mac-wk2/TestExpectations (modified) (1 diff)
-
Source/WTF/ChangeLog (modified) (1 diff)
-
Source/WTF/wtf/FileSystem.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r277311 r277315 1 2021-05-10 Chris Dumez <cdumez@apple.com> 2 3 [ macOS Release wk2 ] http/tests/cache-storage/cache-records-persistency.https.html is flaky crashing 4 https://bugs.webkit.org/show_bug.cgi?id=225522 5 <rdar://problem/77680019> 6 7 Reviewed by Darin Adler. 8 9 Restore previous expectation for the test, now that it is no longer flaky crashing. 10 11 * platform/mac-wk2/TestExpectations: 12 1 13 2021-05-10 Chris Gambrell <cgambrell@apple.com> 2 14 -
trunk/LayoutTests/platform/mac-wk2/TestExpectations
r277303 r277315 1391 1391 webkit.org/b/224784 [ BigSur Release arm64 ] imported/w3c/web-platform-tests/navigation-timing/test_performance_attributes.sub.html [ Pass Failure ] 1392 1392 1393 webkit.org/b/2 25522 [ Release ] http/tests/cache-storage/cache-records-persistency.https.html [ Pass Failure Crash]1393 webkit.org/b/207474 http/tests/cache-storage/cache-records-persistency.https.html [ Pass Failure ] 1394 1394 1395 1395 webkit.org/b/225529 [ BigSur Release arm64 ] scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-overflow-in-iframe.html [ Pass Failure ] -
trunk/Source/WTF/ChangeLog
r277304 r277315 1 2021-05-10 Chris Dumez <cdumez@apple.com> 2 3 [ macOS Release wk2 ] http/tests/cache-storage/cache-records-persistency.https.html is flaky crashing 4 https://bugs.webkit.org/show_bug.cgi?id=225522 5 <rdar://problem/77680019> 6 7 Reviewed by Darin Adler. 8 9 Pass ec parameter to std::filesystem::directory_iterator() so that it doesn't throw in case of the 10 path does not exist. Normally, the function would return early earlier if the path does not exist 11 or isn't a directory. However, in the context of the test, this function is getting called on a 12 background thread and another thread is deleting the directory in parallel. 13 14 * wtf/FileSystem.cpp: 15 (WTF::FileSystemImpl::deleteEmptyDirectory): 16 1 17 2021-05-10 Devin Rousso <drousso@apple.com> 2 18 -
trunk/Source/WTF/wtf/FileSystem.cpp
r277231 r277315 563 563 #if PLATFORM(MAC) 564 564 bool containsSingleDSStoreFile = false; 565 for (auto& entry : std::filesystem::directory_iterator(fsPath )) {565 for (auto& entry : std::filesystem::directory_iterator(fsPath, ec)) { 566 566 if (entry.path().filename() == ".DS_Store") 567 567 containsSingleDSStoreFile = true;
Note:
See TracChangeset
for help on using the changeset viewer.