Changeset 71959 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Apr 22, 2018 12:53:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r70791 r71959 118 118 [ 'Linux', 'Ubuntu', g_k32, 1, 256, ['ubuntu[0-9]*', ]], 119 119 [ 'Linux_64', 'Ubuntu_64', g_k64, 1, 256, ['ubuntu[0-9]*-64', ]], 120 [ 'Linux', 'ArchLinux', g_k32, 1, 256, ['arch[0-9]*', ]], 121 [ 'Linux_64', 'ArchLinux_64', g_k64, 1, 256, ['arch[0-9]*-64', ]], 120 122 [ 'Solaris', 'Solaris', g_k32, 1, 256, ['sol10', 'sol10u[0-9]']], 121 123 [ 'Solaris_64', 'Solaris_64', g_k64, 1, 256, ['sol10-64', 'sol10u-64[0-9]']], … … 501 503 return self.sGuestOsType == g_ksGuestOsTypeOS2; 502 504 505 def isLinux(self): 506 """ Checks if it's an Linux VM. """ 507 return self.sGuestOsType == g_ksGuestOsTypeLinux; 508 503 509 def is64bit(self): 504 510 """ Checks if it's a 64-bit VM. """ … … 1032 1038 TestVm('tst-rhel5', kfGrpSmoke, sHd = '3.0/tcp/rhel5.vdi', 1033 1039 sKind = 'RedHat', acCpusSup = range(1, 33), fIoApic = True, sNic0AttachType = 'nat'), 1040 TestVm('tst-arch', kfGrpStandard, sHd = '4.2/usb/tst-arch.vdi', 1041 sKind = 'ArchLinux_64', acCpusSup = range(1, 33), fIoApic = True, sNic0AttachType = 'nat'), 1034 1042 1035 1043 # Solaris
Note:
See TracChangeset
for help on using the changeset viewer.