VirtualBox

Ignore:
Timestamp:
Mar 14, 2024 3:39:03 PM (9 months ago)
Author:
vboxsync
Message:

ValKit, storage test, add more logging

Location:
trunk/src/VBox/ValidationKit/tests/storage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py

    r103806 r103857  
    281281        fRc = True;
    282282        if self.oTxsSession is not None:
    283             fRc = self.oTxsSession.syncMkDir(sDir, fMode, cMsTimeout);
     283            fRc = self.oTxsSession.syncMkDir(sDir, fMode, cMsTimeout, fIgnoreErrors=False);
    284284        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)
    285286            fRc = os.mkdir(sDir, fMode);
    286287
  • trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py

    r103806 r103857  
    14561456                        fMode = 0o777;
    14571457                        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):
    14591464                            sMountPoint = sDir
    14601465                        else:
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette