Changeset 90517 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Aug 4, 2021 12:40:31 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90510 r90517 212 212 if sys.platform == 'win32': 213 213 os.system('taskkill /IM "%s.exe" /F' % (sProcName)); 214 else: 215 os.system('kill all -9 %s' % (sProcName));214 else: # Note: killall is not available on older Debians (requires psmisc). 215 os.system('kill -9 $(pidof %s)' % (sProcName)); 216 216 217 217 def killHstVkat(self):
Note:
See TracChangeset
for help on using the changeset viewer.