Changeset 103857 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Mar 14, 2024 3:39:03 PM (9 months ago)
- Location:
- trunk/src/VBox/ValidationKit/tests/storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py
r103806 r103857 281 281 fRc = True; 282 282 if self.oTxsSession is not None: 283 fRc = self.oTxsSession.syncMkDir(sDir, fMode, cMsTimeout );283 fRc = self.oTxsSession.syncMkDir(sDir, fMode, cMsTimeout, fIgnoreErrors=False); 284 284 elif not os.path.isdir(sDir): 285 reporter.log("if no txs session found and os.path.isdir is False do os.mkdir for %s" % sDir) 285 286 fRc = os.mkdir(sDir, fMode); 286 287 -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r103806 r103857 1456 1456 fMode = 0o777; 1457 1457 sDir = os.path.join(sMountPoint, 'test'); 1458 if os.path.exists(sDir) or self.oStorCfg.mkDirOnVolume(sMountPoint, 'test', fMode): 1458 fDirExist = os.path.exists(sDir) 1459 fMountPointExist = os.path.exists(sMountPoint) 1460 reporter.log("fExist for sMountPoint: %s, fExist for sDir (test folder): %s" % \ 1461 (fMountPointExist, 1462 fDirExist)) 1463 if fDirExist or self.oStorCfg.mkDirOnVolume(sMountPoint, 'test', fMode): 1459 1464 sMountPoint = sDir 1460 1465 else:
Note:
See TracChangeset
for help on using the changeset viewer.