aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_vcl.py
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2019-05-13 19:21:24 -0400
committerPaul Vinciguerra <pvinci@vinciconsulting.com>2019-05-14 01:09:48 +0000
commit07c0a9d0687a8f38b2863ada33836caf05399bac (patch)
treee7fca834b27023367d139f0f24068d021a158b5d /test/test_vcl.py
parent3bffd4be22c2eeb9177f1b30cad5a7a97528bde3 (diff)
make test: vcl fix OSError exception handling
Change-Id: I4bf7da6752d85e384a8e8f3110964c4b142edcb5 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/test_vcl.py')
-rw-r--r--test/test_vcl.py2
1 files changed, 1 insertions, 1 deletions
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