Changeset 98040 in vbox
- Timestamp:
- Jan 10, 2023 5:05:52 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r97952 r98040 504 504 else: 505 505 reporter.error('Unable to find unit test source dir. Candidates: %s' % (asCandidates,)); 506 if reporter.getVerbosity() >= 2: 507 reporter.log('Contents of "%s"' % self.sScratchPath); 508 for paths, dirs, files in os.walk(self.sScratchPath): 509 reporter.log('{} {} {}'.format(repr(paths), repr(dirs), repr(files))); 506 510 return False 507 511 … … 670 674 self.sExeSuff = ''; 671 675 else: 672 self.sExeSuff = '.exe' if utils.getHostOs() in [ 'win', 'dos', 'os2' ] else '';676 self.sExeSuff = base.exeSuff(); 673 677 674 678 self._testRunUnitTestsSet(oTestVm, r'^tst*', 'testcase'); … … 685 689 reporter.log(' Target: %s' % (oTestVm.sVmName if oTestVm else 'local',)); 686 690 reporter.log(' Mode: %s' % (self.sMode,)); 691 reporter.log(' Exe suffix: %s' % (self.sExeSuff,)); 687 692 reporter.log('Unit tests source: %s %s' 688 693 % (self.sUnitTestsPathSrc, '(on remote)' if self.sMode == 'remote-exec' else '',));
Note:
See TracChangeset
for help on using the changeset viewer.