diff options
author | Benoît Ganne <bganne@cisco.com> | 2019-11-21 16:50:24 +0100 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-11-27 15:25:31 +0000 |
commit | 1a7ed5e3e62dfe77832022a46ee32d744a347ac5 (patch) | |
tree | 6fbece8a5c19831dc3b0ab8011a73fa65f2bbfa1 | |
parent | d3b8c861a44e70c197ab721fa3ce7f38bbeab7fd (diff) |
tests: display stdout and stderr when output caching is disabled
Type: fix
Change-Id: I4286ba58bb15dd67c1199f76166bedf3b4e0344c
Signed-off-by: Benoît Ganne <bganne@cisco.com>
-rw-r--r-- | test/framework.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/framework.py b/test/framework.py index 0138d245577..02c56fbcfe4 100644 --- a/test/framework.py +++ b/test/framework.py @@ -171,7 +171,7 @@ def pump_output(testclass): testclass.vpp_stdout_deque.extend(split[:limit]) if not testclass.cache_vpp_output: for line in split[:limit]: - testclass.logger.debug( + testclass.logger.info( "VPP STDOUT: %s" % line.rstrip("\n")) if testclass.vpp.stderr.fileno() in readable: read = os.read(testclass.vpp.stderr.fileno(), 102400) @@ -189,7 +189,7 @@ def pump_output(testclass): testclass.vpp_stderr_deque.extend(split[:limit]) if not testclass.cache_vpp_output: for line in split[:limit]: - testclass.logger.debug( + testclass.logger.error( "VPP STDERR: %s" % line.rstrip("\n")) # ignoring the dummy pipe here intentionally - the # flag will take care of properly terminating the loop |