Changeset 93904 in vbox for trunk/src/VBox/ValidationKit/tests/unittests
- Timestamp:
- Feb 24, 2022 8:18:36 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r93903 r93904 596 596 reporter.log(' Mode: %s' % (self.sMode)); 597 597 reporter.log('Unit tests source: %s %s' % (self.sUnitTestsPathSrc, \ 598 '(on remote)' if self.sMode is'remote-exec' else ''));598 '(on remote)' if self.sMode == 'remote-exec' else '')); 599 599 reporter.log('VBox install root: %s %s' % (self.sVBoxInstallRoot, \ 600 '(on remote)' if self.sMode is'remote-exec' else ''));600 '(on remote)' if self.sMode == 'remote-exec' else '')); 601 601 reporter.log('*********************************************************'); 602 602 reporter.log('*** PASSED: %d' % self.cPassed); … … 1072 1072 ## @todo Implement remote file enumeration / directory listing. 1073 1073 reporter.error('Sorry, no remote file enumeration implemented yet!\nUse --only-whitelist instead.'); 1074 return False;1074 return; 1075 1075 else: 1076 1076 # Transform our dict into a list, where the keys are the list elements.
Note:
See TracChangeset
for help on using the changeset viewer.