From 61e63bf4e14eddebdd99814cf2633c2e638cd21c Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Sat, 24 Nov 2018 21:19:38 -0800 Subject: make test: Fix too wide subprocess exceptions When a command fails, CalledProcessError is raised. testing with except: masks other failures. Change-Id: I7e3a6739411cb6a4c13e96dd123aff9159213fea Signed-off-by: Paul Vinciguerra --- test/framework.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/framework.py') diff --git a/test/framework.py b/test/framework.py index 3c4aacb6354..c29346bf56c 100644 --- a/test/framework.py +++ b/test/framework.py @@ -348,7 +348,7 @@ class VppTestCase(unittest.TestCase): stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=1) - except Exception as e: + except subprocess.CalledProcessError as e: cls.logger.critical("Couldn't start vpp: %s" % e) raise -- cgit 1.2.3-korg