- Timestamp:
- May 28, 2018 5:33:04 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122822
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r72319 r72365 732 732 reporter.log(' Set of paravirtualized providers (modes) to tests. Intersected with what the test VM supports.'); 733 733 reporter.log(' Default is the first PV mode the test VMs support, generally same as "legacy".'); 734 reporter.log(' --with-nested-hwvirt-only'); 735 reporter.log(' Test VMs using nested hardware-virtualization only.'); 736 reporter.log(' --without-nested-hwvirt-only'); 737 reporter.log(' Test VMs not using nested hardware-virtualization only.'); 734 738 ## @todo Add more options for controlling individual VMs. 735 739 return True; … … 837 841 for oTestVm in self.aoTestVms: 838 842 oTestVm.asParavirtModesSup = oTestVm.asParavirtModesSupOrg; 843 844 elif asArgs[iArg] == '--with-nested-hwvirt-only': 845 for oTestVm in self.aoTestVms: 846 if oTestVm.fNstHwVirt is False: 847 oTestVm.fSkip = True; 848 849 elif asArgs[iArg] == '--without-nested-hwvirt-only': 850 for oTestVm in self.aoTestVms: 851 if oTestVm.fNstHwVirt is True: 852 oTestVm.fSkip = True; 839 853 840 854 else:
Note:
See TracChangeset
for help on using the changeset viewer.