mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
apps/testing: move himem_test,mtetest and x86-64-ABI folders to the new arhc folder
Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com>
This commit is contained in:
parent
9b6de015bc
commit
bdb0fcd71b
19 changed files with 87 additions and 14 deletions
1
testing/arch/.gitignore
vendored
Normal file
1
testing/arch/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/Kconfig
|
||||
24
testing/arch/CMakeLists.txt
Normal file
24
testing/arch/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# ##############################################################################
|
||||
# apps/testing/arch/CMakeLists.txt
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
||||
# license agreements. See the NOTICE file distributed with this work for
|
||||
# additional information regarding copyright ownership. The ASF licenses this
|
||||
# file to you under the Apache License, Version 2.0 (the "License"); you may not
|
||||
# use this file except in compliance with the License. You may obtain a copy of
|
||||
# the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations under
|
||||
# the License.
|
||||
#
|
||||
# ##############################################################################
|
||||
|
||||
nuttx_add_subdirectory()
|
||||
nuttx_generate_kconfig(MENUDESC "arch")
|
||||
23
testing/arch/Make.defs
Normal file
23
testing/arch/Make.defs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
############################################################################
|
||||
# apps/testing/arch/Make.defs
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership. The
|
||||
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance with the
|
||||
# License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
include $(wildcard $(APPDIR)/testing/arch/*/Make.defs)
|
||||
25
testing/arch/Makefile
Normal file
25
testing/arch/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
############################################################################
|
||||
# apps/testing/arch/Makefile
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership. The
|
||||
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance with the
|
||||
# License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
MENUDESC = "arch"
|
||||
|
||||
include $(APPDIR)/Directory.mk
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/himem_test/LibIncludes.mk
|
||||
# apps/testing/arch/himem_test/LibIncludes.mk
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/himem_test/Make.defs
|
||||
# apps/testing/arch/himem_test/Make.defs
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -22,5 +22,5 @@
|
|||
|
||||
|
||||
ifneq ($(CONFIG_TESTING_HIMEM_TEST),)
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/himem_test
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/arch/himem_test
|
||||
endif
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/himem_test/Makefile
|
||||
# apps/testing/arch/himem_test/Makefile
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
include $(APPDIR)/Make.defs
|
||||
include $(APPDIR)/testing/himem_test/LibIncludes.mk
|
||||
include $(APPDIR)/testing/arch/himem_test/LibIncludes.mk
|
||||
|
||||
|
||||
# built-in application info
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* apps/testing/himem_test/himem_chardev_test.c
|
||||
* apps/testing/arch/himem_test/himem_chardev_test.c
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
# ##############################################################################
|
||||
# apps/testing/mtetest/CMakeLists.txt
|
||||
# apps/testing/arch/mtetest/CMakeLists.txt
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/mtetest/Make.defs
|
||||
# apps/testing/arch/mtetest/Make.defs
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -21,5 +21,5 @@
|
|||
############################################################################
|
||||
|
||||
ifneq ($(CONFIG_TESTING_MTE),)
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/mtetest
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/arch/mtetest
|
||||
endif
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/mtetest/Makefile
|
||||
# apps/testing/arch/mtetest/Makefile
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* apps/testing/mtetest/mtetest.c
|
||||
* apps/testing/arch/mtetest/mtetest.c
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/system/uorb/Make.defs
|
||||
# apps/testing/arch/x86-64-ABI/Make.defs
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
|
@ -21,5 +21,5 @@
|
|||
############################################################################
|
||||
|
||||
ifneq ($(CONFIG_TESTING_X86_64_ABI),)
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/x86-64-ABI
|
||||
CONFIGURED_APPS += $(APPDIR)/testing/arch/x86-64-ABI
|
||||
endif
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# apps/testing/x86-64-ABI/Makefile
|
||||
# apps/testing/arch/x86-64-ABI/Makefile
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
Loading…
Add table
Add a link
Reference in a new issue