VirtualBox

Ignore:
Timestamp:
May 30, 2016 3:52:23 PM (9 years ago)
Author:
vboxsync
Message:

wuireport.py: march

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py

    r61304 r61305  
    593593        sHtml += u'<td>%s</td>'    % (webutils.escapeElem(oTestBox.getArchBitString()),);
    594594        sHtml += u'<td>%s</td>'    % (webutils.escapeElem(oTestBox.getPrettyCpuVendor()),);
    595         sHtml += u'<td>f=%#x, m=%#x, s=%#x' % (oTestBox.getCpuFamily(), oTestBox.getCpuModel(), oTestBox.getCpuStepping(),)
     595        sMarch = oTestBox.queryCpuMicroarch();
     596        if sMarch is not None:
     597            sHtml += u'<td>%s (%#x/%#x)' % (sMarch, oTestBox.getCpuModel(), oTestBox.getCpuStepping(),)
     598        else:
     599            sHtml += u'<td>fam%x %#x/%#x' % (oTestBox.getCpuFamily(), oTestBox.getCpuModel(), oTestBox.getCpuStepping(),)
    596600        if oTestBox.fCpuNestedPaging:   sHtml += u', np';
    597601        elif oTestBox.fCpuHwVirt:       sHtml += u', hw';
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette