From 07c0a9d0687a8f38b2863ada33836caf05399bac Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Mon, 13 May 2019 19:21:24 -0400 Subject: make test: vcl fix OSError exception handling Change-Id: I4bf7da6752d85e384a8e8f3110964c4b142edcb5 Signed-off-by: Dave Wallace --- test/test_vcl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit 1.2.3-korg