Changeset 102086 in vbox for trunk/src/VBox/ValidationKit/tests/unittests
- Timestamp:
- Nov 13, 2023 3:42:57 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r99818 r102086 453 453 if False is True: ## @todo r=andy ?? # pylint: disable=comparison-of-constants 454 454 if not self.importVBoxApi(): 455 reporter.error('Unabled to import the VBox Python API.');456 455 return False; 457 456 else: … … 614 613 def actionConfig(self): 615 614 # Make sure vboxapi has been imported so we can use the constants. 615 reporter.log2('actionConfig started\n') 616 616 if not self.importVBoxApi(): 617 return False ;617 return False 618 618 619 619 # Do the configuring. … … 633 633 return self.oTestVmSet.actionConfig(self, eNic0AttachType = eNic0AttachType, 634 634 sDvdImage = self.sVBoxValidationKitIso); 635 reporter.log2('actionConfig finished\n') 635 636 636 637 return True; … … 639 640 # Make sure vboxapi has been imported so we can execute the driver without going thru 640 641 # a former configuring step. 642 reporter.log2('actionExecute started\n') 641 643 if not self.importVBoxApi(): 644 reporter.log2('failed to import VBox API while actionExecute\n') 642 645 return False; 643 646 if not self._detectPaths(): … … 671 674 672 675 fRc = self._testRunUnitTests(None); 676 reporter.log2('actionExecute finished\n') 673 677 674 678 return fRc;
Note:
See TracChangeset
for help on using the changeset viewer.