make test: vcl fix OSError exception handling

Change-Id: I4bf7da6752d85e384a8e8f3110964c4b142edcb5
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
2019-05-13 19:21:24 -04:00
committed by Paul Vinciguerra
parent 3bffd4be22
commit 07c0a9d068

View File

@ -215,7 +215,7 @@ class VCLTestCase(VppTestCase):
os.killpg(os.getpgid(worker_client.process.pid),
signal.SIGKILL)
worker_client.join()
except:
except OSError:
self.logger.debug(
"Couldn't kill client worker process")
raise