Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
116e05f
)
tests: handle unicode charactes in cli output
46/22846/2
author
Klement Sekera
<
[email protected]
>
Tue, 1 Oct 2019 19:14:34 +0000
(19:14 +0000)
committer
Andrew Yourtchenko
<
[email protected]
>
Tue, 22 Oct 2019 11:11:45 +0000
(11:11 +0000)
Type: fix
Change-Id: Ic4fb53e6d10a1de155a3088be81d53d9efeb0c0f
Signed-off-by: Klement Sekera <
[email protected]
>
(cherry picked from commit
6be55648334308d4eaa4a02143b968720bb62078
)
test/vpp_papi_provider.py
patch
|
blob
|
history
diff --git
a/test/vpp_papi_provider.py
b/test/vpp_papi_provider.py
index
f9bb470
..
a3da1ae
100644
(file)
--- a/
test/vpp_papi_provider.py
+++ b/
test/vpp_papi_provider.py
@@
-362,7
+362,8
@@
class VppPapiProvider(object):
:param cli: CLI to execute
:returns: CLI output
"""
- return cli + "\n" + str(self.cli(cli))
+ return cli + "\n" + self.cli(cli).encode('ascii',
+ errors='backslashreplace')
def want_ip4_arp_events(self, enable_disable=1, ip="0.0.0.0"):
return self.api(self.papi.want_ip4_arp_events,