diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2019-05-13 19:21:24 -0400 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-05-14 01:09:48 +0000 |
commit | 07c0a9d0687a8f38b2863ada33836caf05399bac (patch) | |
tree | e7fca834b27023367d139f0f24068d021a158b5d /test | |
parent | 3bffd4be22c2eeb9177f1b30cad5a7a97528bde3 (diff) |
make test: vcl fix OSError exception handling
Change-Id: I4bf7da6752d85e384a8e8f3110964c4b142edcb5
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_vcl.py | 2 |
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 |