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

2017-09-04 Thread Bruce Richardson
On Mon, Sep 04, 2017 at 05:03:47PM +0100, Bruce Richardson wrote: > On Mon, Sep 04, 2017 at 05:00:21PM +0100, Bruce Richardson wrote: > > On Wed, Aug 30, 2017 at 03:51:54PM +0200, Olivier Matz wrote: > > > The intiatial version of the script had some limitations: > > > - cannot work on a non-clean

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

2017-09-04 Thread Bruce Richardson
On Mon, Sep 04, 2017 at 05:00:21PM +0100, Bruce Richardson wrote: > On Wed, Aug 30, 2017 at 03:51:54PM +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 compilat

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

2017-09-04 Thread Bruce Richardson
On Wed, Aug 30, 2017 at 03:51:54PM +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] devtools: rework abi checker script

2017-08-30 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