Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-06-04 Thread Bruce Richardson
On Thu, May 07, 2020 at 09:26:29AM +0200, Christian Ehrhardt wrote: > Without this fix in a pure python3 environment this will run into > issues like: > ModuleNotFoundError: No module named 'StringIO' > or later string encoding issues on check_output. > > Signed-off-by: Christian Ehrhardt > ---

Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-06-04 Thread Bruce Richardson
On Thu, Jun 04, 2020 at 04:43:50PM +0200, Christian Ehrhardt wrote: >On Thu, May 7, 2020 at 1:25 PM Bruce Richardson ><[1]bruce.richard...@intel.com> wrote: > > On Thu, May 07, 2020 at 10:36:35AM +0100, Luca Boccassi wrote: > > On Thu, 2020-05-07 at 09:26 +0200, Christian Ehrhard

Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-06-04 Thread Christian Ehrhardt
On Thu, May 7, 2020 at 1:25 PM Bruce Richardson wrote: > On Thu, May 07, 2020 at 10:36:35AM +0100, Luca Boccassi wrote: > > On Thu, 2020-05-07 at 09:26 +0200, Christian Ehrhardt wrote: > > > Without this fix in a pure python3 environment this will run into > > > issues like: > > > ModuleNotFoun

Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-05-07 Thread Bruce Richardson
On Thu, May 07, 2020 at 10:36:35AM +0100, Luca Boccassi wrote: > On Thu, 2020-05-07 at 09:26 +0200, Christian Ehrhardt wrote: > > Without this fix in a pure python3 environment this will run into > > issues like: > > ModuleNotFoundError: No module named 'StringIO' > > or later string encoding iss

Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-05-07 Thread Robin Jarry
Hi Christian, 2020-05-07, Christian Ehrhardt: > Without this fix in a pure python3 environment this will run into > issues like: > ModuleNotFoundError: No module named 'StringIO' > or later string encoding issues on check_output. > > Signed-off-by: Christian Ehrhardt > @@ -45,11 +45,9 @@ def

Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-05-07 Thread Luca Boccassi
On Thu, 2020-05-07 at 09:26 +0200, Christian Ehrhardt wrote: > Without this fix in a pure python3 environment this will run into > issues like: > ModuleNotFoundError: No module named 'StringIO' > or later string encoding issues on check_output. > > Signed-off-by: Christian Ehrhardt > --- > app

[dpdk-dev] [PATCH] autotest: fix for pure python3 environments

2020-05-07 Thread Christian Ehrhardt
Without this fix in a pure python3 environment this will run into issues like: ModuleNotFoundError: No module named 'StringIO' or later string encoding issues on check_output. Signed-off-by: Christian Ehrhardt --- app/test/autotest_runner.py | 16 +++- 1 file changed, 7 insertions(