Changeset 103702 in vbox
- Timestamp:
- Mar 6, 2024 1:37:56 PM (7 months ago)
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 1 added
- 2 edited
-
testdriver/vboxtestvms.py (modified) (1 diff)
-
testdriver/vboxwrappers.py (modified) (1 diff)
-
vms/t-nsthwvirt-win10-hv-64.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r103587 r103702 2247 2247 sKind = 'Ubuntu_64', acCpusSup = range(1, 2), asVirtModesSup = ['hwvirt-np',], fIoApic = True, fNstHwVirt = True, 2248 2248 sNic0AttachType = 'nat'), 2249 TestVm('tst-nsthwvirt-win10-hv-64', kfGrpStdSmoke, sHd = '7.1/smoketests/t-nsthwvirt-win10-hv-64.vdi', 2250 sKind = 'Windows10_64', acCpusSup = range(1, 2), asVirtModesSup = ['hwvirt-np',], fIoApic = True, 2251 fNstHwVirt = True, sNic0AttachType = 'nat', asParavirtModesSup = [g_ksParavirtProviderNone,]), 2249 2252 2250 2253 # Audio testing. -
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r103529 r103702 1076 1076 if not self.isPlatformX86(): return True; 1077 1077 # Supported. 1078 if self.fpApiVer < 5.3 or not hasattr(vboxcon, 'CPUPropertyType_HWVirt'): 1078 if self.fpApiVer < 5.3: 1079 return True; 1080 if self.fpApiVer < 7.1 and not hasattr(vboxcon, 'CPUPropertyType_HWVirt'): 1081 return True; 1082 if self.fpApiVer >= 7.1 and not hasattr(vboxcon, 'CPUPropertyTypeX86_HWVirt'): 1079 1083 return True; 1080 1084
Note:
See TracChangeset
for help on using the changeset viewer.

