Changeset 61308 in vbox
- Timestamp:
- May 30, 2016 4:29:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testbox.py
r61306 r61308 373 373 sMarch = self.queryCpuMicroarch(); 374 374 if sMarch is not None: 375 return '%s m%02 x s%02x' % (sMarch, self.getCpuModel(), self.getCpuStepping());376 return 'fam%02 x m%02x s%02x' % (self.getCpuFamily(), self.getCpuModel(), self.getCpuStepping());375 return '%s m%02X s%02X' % (sMarch, self.getCpuModel(), self.getCpuStepping()); 376 return 'fam%02X m%02X s%02X' % (self.getCpuFamily(), self.getCpuModel(), self.getCpuStepping()); 377 377 378 378 def getArchBitString(self):
Note:
See TracChangeset
for help on using the changeset viewer.