test: remove link to ixgbe/i40e drivers in meson

Message ID 1564559734-24392-1-git-send-email-david.marchand@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series test: remove link to ixgbe/i40e drivers in meson |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-Compile-Testing success Compile Testing PASS
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS

Commit Message

David Marchand July 31, 2019, 7:55 a.m. UTC
  The tests do not depend on ixgbe or i40e drivers, just remove this
explicit link that likely comes from a copy/paste from testpmd.

Fixes: b5dc795a8a55 ("test: build app with meson as dpdk-test")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 app/test/meson.build | 6 ------
 1 file changed, 6 deletions(-)
  

Comments

Thomas Monjalon Aug. 2, 2019, 8:43 p.m. UTC | #1
31/07/2019 09:55, David Marchand:
> The tests do not depend on ixgbe or i40e drivers, just remove this
> explicit link that likely comes from a copy/paste from testpmd.
> 
> Fixes: b5dc795a8a55 ("test: build app with meson as dpdk-test")
> Cc: stable@dpdk.org
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Applied, thanks
  

Patch

diff --git a/app/test/meson.build b/app/test/meson.build
index 4e0b266..1f70295 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@ -309,12 +309,6 @@  endif
 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
 	test_deps += 'pdump'
 endif
-if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
-	test_deps += 'pmd_i40e'
-endif
-if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
-	test_deps += 'pmd_ixgbe'
-endif
 if dpdk_conf.has('RTE_LIBRTE_BOND_PMD')
 	test_deps += 'pmd_bond'
 endif