- Timestamp:
- Mar 30, 2022 9:17:35 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r94127 r94396 509 509 self.sUnitTestsPathSrc = asArgs[iArg]; 510 510 self.sMode = 'remote-exec'; 511 reporter.log('Unittest source explicitly set to "%s"' % (self.sUnitTestsPathSrc)); 511 512 elif asArgs[iArg] == '--only-whitelist': 512 513 self.fOnlyWhiteList = True; … … 518 519 raise base.InvalidOption('Option "%s" needs a value' % (asArgs[iArg - 1])); 519 520 self.sVBoxInstallRoot = asArgs[iArg]; 521 reporter.log('VBox installation root explicitly set to "%s"' % (self.sVBoxInstallRoot)); 520 522 else: 521 523 return vbox.TestDriver.parseOption(self, asArgs, iArg); … … 556 558 557 559 def actionExecute(self): 558 if self.sUnitTestsPathSrc is None and not self._detectPaths(): 559 return False; 560 if self.sUnitTestsPathSrc is None: 561 if not self._detectPaths(): 562 return False; 560 563 reporter.log2('Unit test source path is "%s"\n' % self.sUnitTestsPathSrc); 561 564 … … 788 791 if self.sMode.startswith('remote'): 789 792 if self.sMode == 'remote-exec': 790 self. oTxsSession.txsCopyFile(self.oSession, self.oTxsSession, sSrc, sDst, iMode);793 self.txsCopyFile(self.oSession, self.oTxsSession, sSrc, sDst, iMode); 791 794 else: 792 795 fRc = self.txsUploadFile(self.oSession, self.oTxsSession, sSrc, sDst);
Note:
See TracChangeset
for help on using the changeset viewer.