Changeset 97672 in vbox for trunk/src/VBox/ValidationKit/common
- Timestamp:
- Nov 24, 2022 8:28:01 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154727
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/utils.py
r97671 r97672 1442 1442 u'/var/cores/', 1443 1443 u'/var/core/', 1444 u'/var/tmp/',1445 1444 ]); 1446 1445 # … … 1452 1451 # ```coreadm -g /path/to/cores/core.%f.%p``` 1453 1452 # 1454 sMatchPrefix = 'core'; 1455 sMatchSuffix = '.%u' % (uPid,); 1453 sMatchSuffix = '.%u.core' % (uPid,); 1456 1454 for sDir in asDmpDirs: 1457 1455 sDir = os.path.expandvars(sDir); … … 1463 1461 continue; 1464 1462 for sEntry in asDirEntries: 1465 if sEntry.startswith(sMatchPrefix) \1466 andsEntry.endswith(sMatchSuffix):1463 fnLog('Entry: %s' % (os.path.join(sDir, sEntry))); 1464 if sEntry.endswith(sMatchSuffix): 1467 1465 sFull = os.path.join(sDir, sEntry); 1468 1466 fnLog('Found crash dump for %u: %s' % (uPid, sFull,));
Note:
See TracChangeset
for help on using the changeset viewer.