From: Dave Wallace Date: Mon, 13 May 2019 23:21:24 +0000 (-0400) Subject: make test: vcl fix OSError exception handling X-Git-Tag: v20.01-rc0~631 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=07c0a9d0687a8f38b2863ada33836caf05399bac;p=vpp.git make test: vcl fix OSError exception handling Change-Id: I4bf7da6752d85e384a8e8f3110964c4b142edcb5 Signed-off-by: Dave Wallace --- diff --git a/test/test_vcl.py b/test/test_vcl.py index 269a96107b2..121b972d954 100644 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -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