VirtualBox

Ignore:
Timestamp:
Jun 30, 2016 9:53:56 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108395
Message:

testdriver/onRuntimeError: Log windows memory stats on HostMemoryLow.

Location:
trunk/src/VBox/ValidationKit/testdriver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/vbox.py

    r61951 r61952  
    763763            if sErrId == 'HostMemoryLow':
    764764                oSession.signalHostMemoryLow();
     765                if sys.platform == 'win32':
     766                    from testdriver import winbase;
     767                    winbase.logMemoryStats();
    765768            oSession.signalTask();
    766769        self.oVBoxMgr.interruptWaitEvents();
  • trunk/src/VBox/ValidationKit/testdriver/winbase.py

    r61833 r61952  
    3232
    3333# Standard Python imports.
    34 import os
     34import os;
     35import ctypes;
    3536
    3637# Windows specific imports.
     
    232233    return True;
    233234
     235#
     236# Misc
     237#
     238
     239def logMemoryStats():
     240    """
     241    Logs windows memory stats.
     242    """
     243    class MemoryStatusEx(ctypes.Structure):
     244        """ MEMORYSTATUSEX """
     245        kaFields = [
     246            ( 'dwLength',                    ctypes.c_ulong ),
     247            ( 'dwMemoryLoad',                ctypes.c_ulong ),
     248            ( 'ullTotalPhys',                ctypes.c_ulonglong ),
     249            ( 'ullAvailPhys',                ctypes.c_ulonglong ),
     250            ( 'ullTotalPageFile',            ctypes.c_ulonglong ),
     251            ( 'ullAvailPageFile',            ctypes.c_ulonglong ),
     252            ( 'ullTotalVirtual',             ctypes.c_ulonglong ),
     253            ( 'ullAvailVirtual',             ctypes.c_ulonglong ),
     254            ( 'ullAvailExtendedVirtual',     ctypes.c_ulonglong ),
     255        ];
     256        _fields_ = kaFields; # pylint: disable=invalid-name
     257
     258        def __init__(self):
     259            super(MemoryStatusEx, self).__init__();
     260            self.dwLength = ctypes.sizeof(self);
     261
     262    try:
     263        oStats = MemoryStatusEx();
     264        ctypes.windll.kernel32.GlobalMemoryStatusEx(ctypes.byref(oStats));
     265    except:
     266        reporter.logXcpt();
     267        return False;
     268
     269    reporter.log('Memory statistics:');
     270    for sField, _ in MemoryStatusEx.kaFields:
     271        reporter.log('  %32s: %s' % (sField, getattr(oStats, sField)));
     272    return True;
     273
Note: See TracChangeset for help on using the changeset viewer.

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