Changeset 84093 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Apr 30, 2020 6:57:43 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddSharedFolders1.py
r83735 r84093 160 160 msStart = base.timestampMilli(); 161 161 while True: 162 fRc 2= oTxsSession.syncIsDir(sGuestMountPoint + self.sGuestSlash + 'candle.dir');163 reporter.log2('candle.dir check -> %s' % (fRc 2,));164 if fRc 2is not fMustSucceed:162 fRc = oTxsSession.syncIsDir(sGuestMountPoint + self.sGuestSlash + 'candle.dir'); 163 reporter.log2('candle.dir check -> %s' % (fRc,)); 164 if fRc is not fMustSucceed: 165 165 break; 166 166 if base.timestampMilli() - msStart > 30000: … … 172 172 reporter.testDone(); 173 173 174 return fRc is fMustSucceed;174 return fRc is not fMustSucceed; 175 175 176 176 def unmountShare(self, oSession, oTxsSession, sShareName, sGuestMountPoint):
Note:
See TracChangeset
for help on using the changeset viewer.