Re: [dpdk-dev] [PATCH v4] devtools: rework abi checker script

2017-09-25 Thread Neil Horman
On Mon, Sep 25, 2017 at 11:11:20AM +0200, Olivier MATZ wrote: > On Thu, Sep 21, 2017 at 11:40:35AM -0400, Neil Horman wrote: > > On Wed, Sep 20, 2017 at 11:12:53AM +0200, Olivier Matz wrote: > > > The initial version of the script had some limitations: > > > - cannot work on a non-clean workspace >

Re: [dpdk-dev] [PATCH v4] devtools: rework abi checker script

2017-09-25 Thread Olivier MATZ
On Thu, Sep 21, 2017 at 11:40:35AM -0400, Neil Horman wrote: > On Wed, Sep 20, 2017 at 11:12:53AM +0200, Olivier Matz wrote: > > The initial version of the script had some limitations: > > - cannot work on a non-clean workspace > > - environment variables are not documented > > - no compilation log

Re: [dpdk-dev] [PATCH v4] devtools: rework abi checker script

2017-09-21 Thread Neil Horman
On Wed, Sep 20, 2017 at 11:12:53AM +0200, Olivier Matz wrote: > The initial version of the script had some limitations: > - cannot work on a non-clean workspace > - environment variables are not documented > - no compilation log in case of failure > - return success even it abi is incompatible > >

[dpdk-dev] [PATCH v4] devtools: rework abi checker script

2017-09-20 Thread Olivier Matz
The initial version of the script had some limitations: - cannot work on a non-clean workspace - environment variables are not documented - no compilation log in case of failure - return success even it abi is incompatible This patch addresses these issues and rework the code. Signed-off-by: Oliv