Changeset 83736 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Apr 17, 2020 8:00:48 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r83713 r83736 1617 1617 return reporter.error('Failed to create directory "%s"!' % (sDir,)); 1618 1618 1619 if oTestVm.isWindows(): 1620 sGuestSlash = '\\'; 1621 else: 1622 sGuestSlash = '/'; 1623 1619 1624 # 1620 1625 # Enable VBoxService verbose logging. 1621 1626 # 1622 self.oDebug.sVBoxServiceLogPath = os.path.join(self.getGuestTempDir(oTestVm), "VBoxService");1627 self.oDebug.sVBoxServiceLogPath = self.getGuestTempDir(oTestVm) + sGuestSlash + "VBoxService"; 1623 1628 if oTxsSession.syncMkDirPath(self.oDebug.sVBoxServiceLogPath, 0o777) is not True: 1624 1629 return reporter.error('Failed to create directory "%s"!' % (self.oDebug.sVBoxServiceLogPath,)); … … 1628 1633 1629 1634 if oTestVm.isWindows(): 1630 sPathRegExe = os.path.join(self.getGuestSystemDir(oTestVm), 'reg.exe');1631 sPathVBoxServiceExe = os.path.join(self.getGuestSystemDir(oTestVm), 'VBoxService.exe');1635 sPathRegExe = self.getGuestSystemDir(oTestVm) + sGuestSlash + 'reg.exe'; 1636 sPathVBoxServiceExe = self.getGuestSystemDir(oTestVm) + sGuestSlash + 'VBoxService.exe'; 1632 1637 sImagePath = '%s -vvvv --logfile %s' % (sPathVBoxServiceExe, sPathLogFile); 1633 1638 self.oTstDrv.txsRunTest(oTxsSession, 'Enabling VBoxService verbose logging (via registry)', 30 * 1000,
Note:
See TracChangeset
for help on using the changeset viewer.