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

2017-09-19 Thread Olivier MATZ
Hi Neil, On Wed, Sep 13, 2017 at 11:00:13AM -0400, Neil Horman wrote: > On Mon, Sep 11, 2017 at 10:46:35AM +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 compi

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

2017-09-13 Thread Neil Horman
On Mon, Sep 11, 2017 at 10:46:35AM +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 v3] devtools: rework abi checker script

2017-09-11 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