Changeset 93780 in vbox
- Timestamp:
- Feb 16, 2022 12:02:15 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r93779 r93780 619 619 ktReason_Add_GstCtl_CopyToGuest_Timeout = ( 'Additions', 'CopyToGuest timeout' ); 620 620 ktReason_Add_GstCtl_CopyToGuest_DstEmpty = ( 'Additions', 'CopyToGuest dst empty' ); 621 ktReason_Add_GstCtl_CopyToGuest_DstExists = ( 'Additions', 'CopyToGuest dst exists' ); 621 622 ktReason_Add_FlushViewOfFile = ( 'Additions', 'FlushViewOfFile' ); 622 623 ktReason_Add_Mmap_Coherency = ( 'Additions', 'mmap coherency' ); … … 1218 1219 enmReason = self.ktReason_Add_GstCtl_CopyFromGuest_Timeout; 1219 1220 elif oFailedResult.sName == 'Copy to guest': 1220 if sResultLog.find('Guest destination must not be empty') >= 0: 1221 off = sResultLog.find('"Guest directory "'); 1222 if off > 0 and sResultLog.find('" already exists"', off, off + 80): 1223 enmReason = self.ktReason_Add_GstCtl_CopyToGuest_DstExists; 1224 elif sResultLog.find('Guest destination must not be empty') >= 0: 1221 1225 enmReason = self.ktReason_Add_GstCtl_CopyToGuest_DstEmpty; 1222 1226 elif sResultLog.find('*** abort action ***') >= 0:
Note:
See TracChangeset
for help on using the changeset viewer.