Message ID | d80ab587b486b8022d8dbc4bb43d43e363e39fc8.1544026736.git.anatoly.burakov@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Thomas Monjalon |
Headers | show |
Series | test: add missing fbarray autotest to meson | expand |
Context | Check | Description |
---|---|---|
ci/Intel-compilation | success | Compilation OK |
ci/mellanox-Performance-Testing | success | Performance Testing PASS |
ci/intel-Performance-Testing | success | Performance Testing PASS |
ci/checkpatch | success | coding style OK |
> -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Anatoly Burakov > Sent: Wednesday, December 5, 2018 9:26 AM > To: dev@dpdk.org > Cc: stable@dpdk.org > Subject: [dpdk-dev] [PATCH] test: add missing fbarray autotest to meson > > Currently, fbarray autotest is only built by make, but is missing from > meson build files. > > Fixes: 7985860c18af ("test/fbarray: add autotests") > Cc: stable@dpdk.org > > Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> > Currently, fbarray autotest is only built by make, but is missing from > > meson build files. > > > > Fixes: 7985860c18af ("test/fbarray: add autotests") > > Cc: stable@dpdk.org > > > > Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com> > > Acked-by: Bruce Richardson <bruce.richardson@intel.com> Applied, thanks
diff --git a/test/test/meson.build b/test/test/meson.build index 554e9945f..1c945ed3d 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -39,6 +39,7 @@ test_sources = files('commands.c', 'test_event_eth_tx_adapter.c', 'test_event_timer_adapter.c', 'test_eventdev.c', + 'test_fbarray.c', 'test_func_reentrancy.c', 'test_flow_classify.c', 'test_hash.c', @@ -170,6 +171,7 @@ test_names = [ 'eventdev_octeontx_autotest', 'eventdev_sw_autotest', 'external_mem_autotest', + 'fbarray_autotest', 'func_reentrancy_autotest', 'flow_classify_autotest', 'hash_autotest',
Currently, fbarray autotest is only built by make, but is missing from meson build files. Fixes: 7985860c18af ("test/fbarray: add autotests") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com> --- test/test/meson.build | 2 ++ 1 file changed, 2 insertions(+)