Changeset 101007 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Sep 4, 2023 4:07:04 PM (17 months ago)
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r99520 r101007 2579 2579 sCom1RawFile = None, 2580 2580 fSecureBoot = False, 2581 sUefiMokPathPrefix = None): 2581 sUefiMokPathPrefix = None, 2582 eGraphicsControllerType = None): 2582 2583 """ 2583 2584 Creates a test VM with a immutable HD from the test resources. … … 2693 2694 elif fRc and self.fpApiVer >= 6.2 and hasattr(vboxcon, 'IommuType_Intel') and sIommuType == 'intel': 2694 2695 fRc = oSession.setIommuType(vboxcon.IommuType_Intel); 2696 if fRc and eGraphicsControllerType is not None: 2697 fRc = oSession.setVideoControllerType(eGraphicsControllerType); 2695 2698 2696 2699 if fRc: fRc = oSession.saveSettings(); -
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r100898 r101007 124 124 [ 'Windows2019', 'Windows2019', g_k64, 1, 64, ['w2k19', 'w2k19sp[0-9]', 'win2k19', 'win2k19sp[0-9]',]], # max cpus/cores?? 125 125 [ 'Windows2022', 'Windows2022', g_k64, 1, 64, ['w2k22', 'w2k22sp[0-9]', 'win2k22', 'win2k22sp[0-9]',]], # max cpus/cores?? 126 [ 'Windows11_64', 'Windows11_64', g_k64, 1, 64, ['w11', 'w11-64', 'w11sp[0-9]-64', 'win11', 'win11-64',]], # max cpus/cores??126 [ 'Windows11_64', 'Windows11_64', g_k64, 2, 64, ['w11', 'w11-64', 'w11sp[0-9]-64', 'win11', 'win11-64',]], # max cpus/cores?? 127 127 [ 'Linux', 'Debian', g_k32, 1, 256, ['deb[0-9]*', 'debian[0-9]*', ]], 128 128 [ 'Linux_64', 'Debian_64', g_k64, 1, 256, ['deb[0-9]*-64', 'debian[0-9]*-64', ]], … … 974 974 sHddControllerType = 'IDE Controller', # type: str 975 975 sDvdControllerType = 'IDE Controller', # type: str 976 sGraphicsControllerType = None, # type: str 976 977 fSecureBoot = False, # type: bool 977 978 sUefiMokPathPrefix = None # type: str … … 990 991 self.sDvdImage = None; # Relative to the testrsrc root. 991 992 self.sDvdControllerType = sDvdControllerType; 993 self.sGraphicsControllerType = sGraphicsControllerType; 992 994 self.fIoApic = fIoApic; 993 995 self.fNstHwVirt = fNstHwVirt; … … 1205 1207 sCom1RawFile = self.sCom1RawFile if self.fCom1RawFile else None, 1206 1208 fSecureBoot = self.fSecureBoot, 1207 sUefiMokPathPrefix = self.sUefiMokPathPrefix 1209 sUefiMokPathPrefix = self.sUefiMokPathPrefix, 1210 eGraphicsControllerType = vboxcon.GraphicsControllerType_VBoxSVGA if self.sGraphicsControllerType == 'VBoxSVGA' else None 1208 1211 ); 1209 1212 … … 1496 1499 sDvdControllerName = 'IDE Controller', # type: str 1497 1500 cMBRamMax = None, # type: int 1501 sGraphicsControllerType = None # type: str 1498 1502 ): 1499 1503 TestVm.__init__(self, … … 1510 1514 sHddControllerType = sHddControllerName, 1511 1515 sDvdControllerType = sDvdControllerName, 1512 asParavirtModesSup = (g_ksParavirtProviderNone,) 1516 asParavirtModesSup = (g_ksParavirtProviderNone,), 1517 sGraphicsControllerType = sGraphicsControllerType 1513 1518 ); 1514 1519 self.fCom1RawFile = True; … … 2085 2090 TestVm('tst-win11-64-efi', kfGrpStdSmoke, sHd = '7.0/win11/t-win11-64-efi-2.vdi', 2086 2091 sKind = 'Windows11_64', acCpusSup = range(1, 33), fIoApic = True, sFirmwareType = 'efi', 2087 sHddControllerType = 'SATA Controller', sDvdControllerType = 'SATA Controller'), 2092 sHddControllerType = 'SATA Controller', sDvdControllerType = 'SATA Controller', 2093 sGraphicsControllerType = 'VBoxSVGA'), 2088 2094 2089 2095 # Nested hardware-virtualization
Note:
See TracChangeset
for help on using the changeset viewer.