Changeset 97664 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 23, 2022 10:48:00 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r97661 r97664 721 721 if sKindCrashDump is not None: # Enable. 722 722 sCorePath = getDirEnv('TESTBOX_PATH_SCRATCH', sAlternative = '/var/cores', fTryCreate = False); 723 utils. processOutputChecked([ 'coreadm', '-e', 'process', '-g', os.path.join(sCorePath, 'core.%f.%p') ]);723 utils.sudoProcessOutputChecked([ 'coreadm', '-e', 'process', '-g', os.path.join(sCorePath, 'core.%f.%p') ]); 724 724 else: # Disable. 725 utils. processOutputChecked([ 'coreadm', '-d', 'process' ]);725 utils.sudoProcessOutputChecked([ 'coreadm', '-d', 'process' ]); 726 726 727 727 if sKindCrashDump is not None:
Note:
See TracChangeset
for help on using the changeset viewer.