tests: display stdout and stderr when output caching is disabled
Type: fix
Change-Id: I4286ba58bb15dd67c1199f76166bedf3b4e0344c
Signed-off-by: Benoît Ganne <bganne@cisco.com>
(cherry picked from commit 1a7ed5e3e6
)
This commit is contained in:

committed by
Andrew Yourtchenko

parent
cb3edd53e8
commit
c7e400f8af
@ -170,7 +170,7 @@ def pump_output(testclass):
|
|||||||
testclass.vpp_stdout_deque.extend(split[:limit])
|
testclass.vpp_stdout_deque.extend(split[:limit])
|
||||||
if not testclass.cache_vpp_output:
|
if not testclass.cache_vpp_output:
|
||||||
for line in split[:limit]:
|
for line in split[:limit]:
|
||||||
testclass.logger.debug(
|
testclass.logger.info(
|
||||||
"VPP STDOUT: %s" % line.rstrip("\n"))
|
"VPP STDOUT: %s" % line.rstrip("\n"))
|
||||||
if testclass.vpp.stderr.fileno() in readable:
|
if testclass.vpp.stderr.fileno() in readable:
|
||||||
read = os.read(testclass.vpp.stderr.fileno(), 102400)
|
read = os.read(testclass.vpp.stderr.fileno(), 102400)
|
||||||
@ -186,7 +186,7 @@ def pump_output(testclass):
|
|||||||
testclass.vpp_stderr_deque.extend(split[:limit])
|
testclass.vpp_stderr_deque.extend(split[:limit])
|
||||||
if not testclass.cache_vpp_output:
|
if not testclass.cache_vpp_output:
|
||||||
for line in split[:limit]:
|
for line in split[:limit]:
|
||||||
testclass.logger.debug(
|
testclass.logger.error(
|
||||||
"VPP STDERR: %s" % line.rstrip("\n"))
|
"VPP STDERR: %s" % line.rstrip("\n"))
|
||||||
# ignoring the dummy pipe here intentionally - the
|
# ignoring the dummy pipe here intentionally - the
|
||||||
# flag will take care of properly terminating the loop
|
# flag will take care of properly terminating the loop
|
||||||
|
Reference in New Issue
Block a user