Re: [dpdk-dev] [PATCH] app/test: fix memory autotests on FreeBSD

2021-10-02 Thread David Marchand
On Fri, Sep 17, 2021 at 5:09 PM Bruce Richardson wrote: > > The memory autotests were failing on FreeBSD, due to an incorrect errno > variable being checked for ENOTSUP. The test checked "errno" while the > DPDK API sets "rte_errno". Changing to check the right variable makes > the test behave pro

[dpdk-dev] [PATCH] app/test: fix memory autotests on FreeBSD

2021-09-17 Thread Bruce Richardson
The memory autotests were failing on FreeBSD, due to an incorrect errno variable being checked for ENOTSUP. The test checked "errno" while the DPDK API sets "rte_errno". Changing to check the right variable makes the test behave properly. Fixes: c3e35a0966b8 ("test/mem: check segment fd API") Cc: