Changeset 61952 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jun 30, 2016 9:53:56 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108395
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r61951 r61952 763 763 if sErrId == 'HostMemoryLow': 764 764 oSession.signalHostMemoryLow(); 765 if sys.platform == 'win32': 766 from testdriver import winbase; 767 winbase.logMemoryStats(); 765 768 oSession.signalTask(); 766 769 self.oVBoxMgr.interruptWaitEvents(); -
trunk/src/VBox/ValidationKit/testdriver/winbase.py
r61833 r61952 32 32 33 33 # Standard Python imports. 34 import os 34 import os; 35 import ctypes; 35 36 36 37 # Windows specific imports. … … 232 233 return True; 233 234 235 # 236 # Misc 237 # 238 239 def 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.