VirtualBox

Ignore:
Timestamp:
Aug 4, 2021 12:40:31 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
146121
Message:

Audio/ValKit: killall is not available on older Debians; use pidof instead. ​bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py

    r90510 r90517  
    212212        if sys.platform == 'win32':
    213213            os.system('taskkill /IM "%s.exe" /F' % (sProcName));
    214         else:
    215             os.system('killall -9 %s' % (sProcName));
     214        else: # Note: killall is not available on older Debians (requires psmisc).
     215            os.system('kill -9 $(pidof %s)' % (sProcName));
    216216
    217217    def killHstVkat(self):
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette