Changeset 81474 in vbox for trunk/src/VBox/ValidationKit/testdriver/vbox.py
- Timestamp:
- Oct 23, 2019 7:34:15 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134199
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r81435 r81474 3173 3173 3174 3174 def hasHostNestedHwVirt(self, fQuiet = False): 3175 """3176 Checks if nested hardware-assisted virtualization is supported by the host.3177 3178 Returns True / False.3179 Raises exception on environment / host mismatch.3180 """3181 return self._hasHostCpuFeature('TESTBOX_HAS_NESTED_HWVIRT', 'ProcessorFeature_NestedHWVirt', 6.0, fQuiet) \3182 and self.hasHostHwVirt(fQuiet);3175 """ 3176 Checks if nested hardware-assisted virtualization is supported by the host. 3177 3178 Returns True / False. 3179 Raises exception on environment / host mismatch. 3180 """ 3181 return self._hasHostCpuFeature('TESTBOX_HAS_NESTED_HWVIRT', 'ProcessorFeature_NestedHWVirt', 6.0, fQuiet) \ 3182 and self.hasHostHwVirt(fQuiet); 3183 3183 3184 3184 def hasHostLongMode(self, fQuiet = False):
Note:
See TracChangeset
for help on using the changeset viewer.