Changeset 97672 in vbox for trunk/src/VBox
- Timestamp:
- Nov 24, 2022 8:28:01 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154727
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 2 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,)); -
trunk/src/VBox/ValidationKit/testdriver/base.py
r97669 r97672 723 723 utils.sudoProcessOutputChecked([ 'coreadm', '-e', 'global', '-e', 'global-setid', \ 724 724 '-e', 'process', '-e', 'proc-setid', \ 725 '-g', os.path.join(sCorePath, ' core.%f.%p')]);725 '-g', os.path.join(sCorePath, '%f.%p.core')]); 726 726 else: # Disable. 727 727 utils.sudoProcessOutputChecked([ 'coreadm', \
Note:
See TracChangeset
for help on using the changeset viewer.