mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
auto-t: throw exception if executable is missing
Certain tests may require external processes to work (e.g. testNetconfig) and if missing the test will just hang until the maximum test timeout. Check in start_process if the exe actually exists and if not throw an exception.
This commit is contained in:
parent
60e165095a
commit
63e35dbd88
@ -34,6 +34,9 @@ class Process(subprocess.Popen):
|
||||
|
||||
logfile = args[0]
|
||||
|
||||
if not shutil.which(args[0]):
|
||||
raise Exception("%s is not found on system" % args[0])
|
||||
|
||||
if Process.is_verbose(args[0], log=False):
|
||||
self.verbose = True
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user