- Timestamp:
- Dec 16, 2021 1:40:00 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r92948 r92981 1639 1639 1640 1640 # Query the TestExecService (TXS) version first to find out on what we run. 1641 sTxsVer = self.oTstDrv.txsVer(oSession, oTxsSession, 30 * 100, fIgnoreErrors = True);1641 fGotTxsVer = self.oTstDrv.txsVer(oSession, oTxsSession, 30 * 100, fIgnoreErrors = True); 1642 1642 1643 1643 # Whether to enable verbose logging for VBoxService. 1644 1644 fEnableVerboseLogging = False; 1645 1646 # Old TXS versions had a bug which caused an infinite loop when executing stuff containing "$xxx",1647 # so check the version here first and skip enabling verbose logging if needed.1648 if sTxsVer:1649 fEnableVerboseLogging = True;1650 1645 1651 1646 # On Windows guests we always can enable verbose logging. … … 1656 1651 if not self.oDebug.sImgPath: 1657 1652 fEnableVerboseLogging = True; 1653 1654 # Old TxS versions had a bug which caused an infinite loop when executing stuff containing "$xxx", 1655 # so check if we got the version here first and skip enabling verbose logging nonetheless if needed. 1656 if not fGotTxsVer: 1657 fEnableVerboseLogging = False; 1658 1658 1659 1659 # … … 1703 1703 if not fRc: 1704 1704 return False; 1705 else: 1706 reporter.log('Skipping VBoxService enabling verbose logging (too old TxS service running)') 1705 1707 1706 1708 #
Note:
See TracChangeset
for help on using the changeset viewer.