Changeset 92886 in vbox
- Timestamp:
- Dec 13, 2021 2:12:48 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r92885 r92886 353 353 # Many of the vbox processes are initially set-uid-to-root and associated debuggers are running 354 354 # via sudo, so we might not be able to kill them unless we sudo and use /bin/kill. 355 utils.sudoProcessCall(['/bin/kill', '-9', '%s' % (oProcess.iPid,)]); 355 try: utils.sudoProcessCall(['/bin/kill', '-9', '%s' % (oProcess.iPid,)]); 356 except: reporter.logXcpt(); 356 357 357 358 # Check if they're all dead like they should be.
Note:
See TracChangeset
for help on using the changeset viewer.

