Changeset 72379 in vbox for trunk/src/VBox
- Timestamp:
- May 29, 2018 11:05:23 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r72315 r72379 3066 3066 """ 3067 3067 sCpuDesc = self._getHostCpuDesc(fQuiet); 3068 return sCpuDesc.startswith("AMD")or sCpuDesc == 'AuthenticAMD';3068 return 'AMD' in sCpuDesc or sCpuDesc == 'AuthenticAMD'; 3069 3069 3070 3070 def isHostCpuIntel(self, fQuiet = False):
Note:
See TracChangeset
for help on using the changeset viewer.