diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-11-24 21:19:38 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-11-25 18:33:50 +0000 |
commit | 61e63bf4e14eddebdd99814cf2633c2e638cd21c (patch) | |
tree | bf1e33a58f38deb7628a5df94202b9b30c61c621 /test/test_jvpp.py | |
parent | c2b4dc598149e9aa2e1727259257b2650f95c683 (diff) |
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 <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_jvpp.py')
-rw-r--r-- | test/test_jvpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_jvpp.py b/test/test_jvpp.py index 36dbdb2b391..6151ebdbb20 100644 --- a/test/test_jvpp.py +++ b/test/test_jvpp.py @@ -135,7 +135,7 @@ class TestJVpp(VppTestCase): self.logger.info("Process output : {0}{1}".format(os.linesep, out)) if self.process.returncode != 0: - raise Exception( + raise subprocess.CalledProcessError( "Command {0} failed with return code: {1}.{2}" "Process error output: {2}{3}" .format(command, self.process.returncode, os.linesep, err)) |