Changeset 103045 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jan 24, 2024 7:32:52 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 161284
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r103028 r103045 2762 2762 elif sGraphicsControllerType == 'VBoxVGA': 2763 2763 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_VBoxVGA); 2764 elif sGraphicsControllerType == 'QemuRamFb': 2765 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_QemuRamFB); 2764 2766 2765 2767 # -
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r102966 r103045 439 439 elif self.isP4Incompatible() and oTestDrv.isHostCpuP4(): 440 440 reporter.log('Skipping P4 incompatible VM.'); 441 elif self.sPlatformArchitecture == 'ARM' and utils.getHostArch() == 'amd64': 442 reporter.log('Skipping ARM VM on amd64 host'); 441 443 else: 442 444 return False; … … 1002 1004 sGraphicsControllerType = None, # type: str 1003 1005 fSecureBoot = False, # type: bool 1004 sUefiMokPathPrefix = None # type: str 1006 sUefiMokPathPrefix = None, # type: str 1007 sPlatformArchitecture = 'x86' # type: str 1005 1008 ): 1006 1009 self.oSet = oSet; … … 1033 1036 self.fSecureBoot = fSecureBoot; 1034 1037 self.sUefiMokPathPrefix = sUefiMokPathPrefix; 1038 self.sPlatformArchitecture = sPlatformArchitecture; 1035 1039 1036 1040 self.fSnapshotRestoreCurrent = False; # Whether to restore execution on the current snapshot. … … 1171 1175 if self.fNstHwVirt and not oTestDrv.hasHostNestedHwVirt(): 1172 1176 reporter.log('Ignoring VM %s (Nested hardware-virtualization not support on this host).' % (self.sVmName,)); 1177 return True; 1178 elif self.sPlatformArchitecture == 'ARM' and utils.getHostArch() == 'amd64': 1173 1179 return True; 1174 1180 return False; … … 1234 1240 fSecureBoot = self.fSecureBoot, 1235 1241 sUefiMokPathPrefix = self.sUefiMokPathPrefix, 1236 sGraphicsControllerType = self.sGraphicsControllerType 1242 sGraphicsControllerType = self.sGraphicsControllerType, 1243 sPlatformArchitecture = self.sPlatformArchitecture 1237 1244 ); 1238 1245 … … 1259 1266 fRc = None; # Skip the test. 1260 1267 elif self.isP4Incompatible() and oTestDrv.isHostCpuP4(): 1268 fRc = None; # Skip the test. 1269 elif self.sPlatformArchitecture == 'ARM' and utils.getHostArch() == 'amd64': 1261 1270 fRc = None; # Skip the test. 1262 1271 else: … … 2020 2029 sKind = 'Oracle', acCpusSup = range(1, 33), fIoApic = True, 2021 2030 asParavirtModesSup = [g_ksParavirtProviderKVM,]), 2031 TestVm('tst-ol-9_2-amd64', kfGrpStdSmoke, sHd = '7.1/smoketests/ol-9_2-amd64-txs.vdi', 2032 sKind = 'Oracle_64', acCpusSup = range(1, 33), fIoApic = True, 2033 asParavirtModesSup = [g_ksParavirtProviderKVM,], sHddControllerType='SATA Controller', 2034 sDvdControllerType = 'SATA Controller', sGraphicsControllerType = 'VMSVGA'), 2022 2035 # Note: Don't use this image for VBoxService / Guest Control-related tests anymore; 2023 2036 # The distro has a buggy dbus implementation, which crashes often in some dbus watcher functions when being … … 2174 2187 2175 2188 #AncientTestVm('tst-dos5-win311a', sKind = 'DOS', sHd = '5.2/great-old-ones/t-dos5-win311a/t-dos5-win311a.vdi'), 2189 2190 # 2191 # ARM 2192 # 2193 TestVm('tst-ol-9_2-arm64', kfGrpStdSmoke, sHd = '7.1/smoketests/ol-9_2-arm64-txs.vdi', 2194 sKind = 'Oracle_arm64', acCpusSup = range(1, 33), sHddControllerType='VirtIO SCSI Controller', 2195 sDvdControllerType = 'SATA Controller', sGraphicsControllerType = 'QemuRamFb', sPlatformArchitecture = 'ARM'), 2176 2196 ); 2177 2197
Note:
See TracChangeset
for help on using the changeset viewer.