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

2017-09-11 Thread Olivier MATZ
Hello Neil, On Fri, Sep 08, 2017 at 09:46:49AM -0400, Neil Horman wrote: > On Wed, Sep 06, 2017 at 04:51:01PM +0200, Olivier Matz wrote: > > The intiatial version of the script had some limitations: > > - cannot work on a non-clean workspace > > - environment variables are not documented > > - no

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

2017-09-08 Thread Neil Horman
On Wed, Sep 06, 2017 at 04:51:01PM +0200, Olivier Matz wrote: > The intiatial 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 v2] devtools: rework abi checker script

2017-09-06 Thread Olivier Matz
The intiatial 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: Ol