Changeset 79371 in vbox for trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
- Timestamp:
- Jun 27, 2019 2:51:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
r79140 r79371 2423 2423 RTTestIFailed("%s/%#x/%c: %#x", pszClass, cbBuf, chType, rcNt); 2424 2424 if ( (Ios.Status != VirginIos.Status || Ios.Information != VirginIos.Information) 2425 && !( fType == RTFS_TYPE_DIRECTORY /* NTFS/W10-17763 */ 2426 && Ios.Status == rcNt && Ios.Information == 0) ) 2425 && !(fType == RTFS_TYPE_DIRECTORY && Ios.Status == rcNt && Ios.Information == 0) /* NTFS/W10-17763 */ 2426 && !( enmClass == FileUnusedInformation 2427 && Ios.Status == rcNt && Ios.Information == sizeof(uBuf)) /* NTFS/VBoxSF/w7rtm */ ) 2427 2428 RTTestIFailed("%s/%#x/%c: I/O status block was modified: %#x %#zx", 2428 2429 pszClass, cbBuf, chType, Ios.Status, Ios.Information);
Note:
See TracChangeset
for help on using the changeset viewer.