VirtualBox

Changeset 103702 in vbox


Ignore:
Timestamp:
Mar 6, 2024 1:37:56 PM (7 months ago)
Author:
vboxsync
Message:

ValidationKit: bugref:10318 Enable smoke test for Hyper-V enabled Windows 10 Pro guest.

Location:
trunk/src/VBox/ValidationKit
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py

    r103587 r103702  
    22472247               sKind = 'Ubuntu_64', acCpusSup = range(1, 2), asVirtModesSup = ['hwvirt-np',], fIoApic = True, fNstHwVirt = True,
    22482248               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,]),
    22492252
    22502253        # Audio testing.
  • trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py

    r103529 r103702  
    10761076        if not self.isPlatformX86(): return True;
    10771077        # 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'):
    10791083            return True;
    10801084
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette