test: add missing external mem autotest to meson

Message ID 2e33d0db21b3ae0e06ed442888fa3db2419a3aa2.1544026386.git.anatoly.burakov@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series test: add missing external mem autotest to meson |

Checks

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

Commit Message

Anatoly Burakov Dec. 5, 2018, 4:25 p.m. UTC
  The 'external_mem_autotest' was defined in the meson build, but
the actual source file was not being compiled by meson.

Fixes: b270daa43b3d ("test: support external memory")
Cc: stable@dpdk.org

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
---
 test/test/meson.build | 1 +
 1 file changed, 1 insertion(+)
  

Comments

Thomas Monjalon Dec. 20, 2018, 10:16 p.m. UTC | #1
05/12/2018 17:25, Anatoly Burakov:
> The 'external_mem_autotest' was defined in the meson build, but
> the actual source file was not being compiled by meson.
> 
> Fixes: b270daa43b3d ("test: support external memory")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>

Applied, thanks
  

Patch

diff --git a/test/test/meson.build b/test/test/meson.build
index 554e9945f..0914aa258 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_external_mem.c',
 	'test_func_reentrancy.c',
 	'test_flow_classify.c',
 	'test_hash.c',