app/cmdline: move from test directory
Move app to "app" directory and enable with meson build. For consistency of naming, the subdirectory is also renamed from cmdline_test to test-cmdline. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
parent
b543d1a715
commit
0c36081db2
@ -1167,7 +1167,7 @@ F: test/test/test_cfgfiles/
|
||||
Interactive command line
|
||||
M: Olivier Matz <olivier.matz@6wind.com>
|
||||
F: lib/librte_cmdline/
|
||||
F: test/cmdline_test/
|
||||
F: app/test-cmdline/
|
||||
F: test/test/test_cmdline*
|
||||
F: examples/cmdline/
|
||||
F: doc/guides/sample_app_ug/cmd_line.rst
|
||||
|
@ -6,6 +6,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
|
||||
DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
|
||||
DIRS-$(CONFIG_RTE_PROC_INFO) += proc-info
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test-cmdline
|
||||
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y)
|
||||
DIRS-$(CONFIG_RTE_TEST_BBDEV) += test-bbdev
|
||||
|
@ -1,9 +1,11 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2017 Intel Corporation
|
||||
|
||||
apps = ['pdump',
|
||||
apps = [
|
||||
'pdump',
|
||||
'proc-info',
|
||||
'test-bbdev',
|
||||
'test-cmdline',
|
||||
'test-compress-perf',
|
||||
'test-crypto-perf',
|
||||
'test-eventdev',
|
||||
|
5
app/test-cmdline/meson.build
Normal file
5
app/test-cmdline/meson.build
Normal file
@ -0,0 +1,5 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2019 Intel Corporation
|
||||
|
||||
sources = files('commands.c', 'cmdline_test.c')
|
||||
deps += 'cmdline'
|
@ -6,6 +6,5 @@ include $(RTE_SDK)/mk/rte.vars.mk
|
||||
DIRS-$(CONFIG_RTE_APP_TEST) += test
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_ACL) += test-acl
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += test-pipeline
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_test
|
||||
|
||||
include $(RTE_SDK)/mk/rte.subdir.mk
|
||||
|
Loading…
Reference in New Issue
Block a user