diff --git a/testing/mm/.gitignore b/testing/mm/.gitignore new file mode 100644 index 00000000000..9e1d2593ee8 --- /dev/null +++ b/testing/mm/.gitignore @@ -0,0 +1 @@ +/Kconfig diff --git a/testing/mm/CMakeLists.txt b/testing/mm/CMakeLists.txt index 043685f330f..ca97570aeee 100644 --- a/testing/mm/CMakeLists.txt +++ b/testing/mm/CMakeLists.txt @@ -20,18 +20,5 @@ # # ############################################################################## -if(CONFIG_TESTING_MM) - nuttx_add_application( - NAME - ${CONFIG_TESTING_MM_PROGNAME} - PRIORITY - ${CONFIG_TESTING_MM_PRIORITY} - STACKSIZE - ${CONFIG_TESTING_MM_STACKSIZE} - MODULE - ${CONFIG_TESTING_MM} - INCLUDE_DIRECTORIES - ${NUTTX_DIR}/mm/mm_heap - SRCS - mm_main.c) -endif() +nuttx_add_subdirectory() +nuttx_generate_kconfig(MENUDESC "mm") diff --git a/testing/mm/Make.defs b/testing/mm/Make.defs index a82b81f5655..c34a91b81fd 100644 --- a/testing/mm/Make.defs +++ b/testing/mm/Make.defs @@ -20,6 +20,4 @@ # ############################################################################ -ifneq ($(CONFIG_TESTING_MM),) -CONFIGURED_APPS += $(APPDIR)/testing/mm -endif +include $(wildcard $(APPDIR)/testing/mm/*/Make.defs) diff --git a/testing/mm/Makefile b/testing/mm/Makefile index bf202717c68..28307d2e383 100644 --- a/testing/mm/Makefile +++ b/testing/mm/Makefile @@ -20,17 +20,6 @@ # ############################################################################ -include $(APPDIR)/Make.defs +MENUDESC = "mm" -# Memory Management Test - -PROGNAME = $(CONFIG_TESTING_MM_PROGNAME) -PRIORITY = $(CONFIG_TESTING_MM_PRIORITY) -STACKSIZE = $(CONFIG_TESTING_MM_STACKSIZE) -MODULE = $(CONFIG_TESTING_MM) - -MAINSRC = mm_main.c - -CFLAGS += -I$(TOPDIR)/mm/mm_heap - -include $(APPDIR)/Application.mk +include $(APPDIR)/Directory.mk diff --git a/testing/cachetest/CMakeLists.txt b/testing/mm/cachetest/CMakeLists.txt similarity index 96% rename from testing/cachetest/CMakeLists.txt rename to testing/mm/cachetest/CMakeLists.txt index 5eb87601db2..1858d957f2f 100644 --- a/testing/cachetest/CMakeLists.txt +++ b/testing/mm/cachetest/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/cachetest/CMakeLists.txt +# apps/testing/mm/cachetest/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/cachetest/Kconfig b/testing/mm/cachetest/Kconfig similarity index 100% rename from testing/cachetest/Kconfig rename to testing/mm/cachetest/Kconfig diff --git a/testing/cachetest/Make.defs b/testing/mm/cachetest/Make.defs similarity index 92% rename from testing/cachetest/Make.defs rename to testing/mm/cachetest/Make.defs index 70bbd75aa43..ccad027be63 100644 --- a/testing/cachetest/Make.defs +++ b/testing/mm/cachetest/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/cachetest/Make.defs +# apps/testing/mm/cachetest/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_CACHETEST),) -CONFIGURED_APPS += $(APPDIR)/testing/cachetest +CONFIGURED_APPS += $(APPDIR)/testing/mm/cachetest endif diff --git a/testing/cachetest/Makefile b/testing/mm/cachetest/Makefile similarity index 97% rename from testing/cachetest/Makefile rename to testing/mm/cachetest/Makefile index 544e1da4894..45d1378fdd2 100644 --- a/testing/cachetest/Makefile +++ b/testing/mm/cachetest/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/cachetest/Makefile +# apps/testing/mm/cachetest/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/cachetest/cachetest_main.c b/testing/mm/cachetest/cachetest_main.c similarity index 99% rename from testing/cachetest/cachetest_main.c rename to testing/mm/cachetest/cachetest_main.c index ec1653a5904..ff7fe645ddf 100644 --- a/testing/cachetest/cachetest_main.c +++ b/testing/mm/cachetest/cachetest_main.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/cachetest/cachetest_main.c + * apps/testing/mm/cachetest/cachetest_main.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/mm/heaptest/CMakeLists.txt b/testing/mm/heaptest/CMakeLists.txt new file mode 100644 index 00000000000..9bf6aebb579 --- /dev/null +++ b/testing/mm/heaptest/CMakeLists.txt @@ -0,0 +1,37 @@ +# ############################################################################## +# apps/testing/mm/heaptest/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. +# +# ############################################################################## + +if(CONFIG_TESTING_HEAP) + nuttx_add_application( + NAME + ${CONFIG_TESTING_HEAP_PROGNAME} + PRIORITY + ${CONFIG_TESTING_HEAP_PRIORITY} + STACKSIZE + ${CONFIG_TESTING_HEAP_STACKSIZE} + MODULE + ${CONFIG_TESTING_HEAP} + INCLUDE_DIRECTORIES + ${NUTTX_DIR}/mm/mm_heap + SRCS + heap_main.c) +endif() diff --git a/testing/mm/Kconfig b/testing/mm/heaptest/Kconfig similarity index 75% rename from testing/mm/Kconfig rename to testing/mm/heaptest/Kconfig index a3fc91ded46..194e5ee99be 100644 --- a/testing/mm/Kconfig +++ b/testing/mm/heaptest/Kconfig @@ -3,30 +3,30 @@ # see the file kconfig-language.txt in the NuttX tools repository. # -config TESTING_MM +config TESTING_HEAP tristate "Memory management test" default n ---help--- Enable the memory management test -if TESTING_MM +if TESTING_HEAP -config TESTING_MM_PROGNAME +config TESTING_HEAP_PROGNAME string "Program name" - default "mm" + default "heap" ---help--- This is the name of the program that will be used when the NSH ELF program is installed. -config TESTING_MM_PRIORITY +config TESTING_HEAP_PRIORITY int "Task priority" default 100 -config TESTING_MM_STACKSIZE +config TESTING_HEAP_STACKSIZE int "Stack size" default DEFAULT_TASK_STACKSIZE -config TESTING_MM_POWEROFF +config TESTING_HEAP_POWEROFF bool "Terminate on test completion" default n depends on BOARDCTL_POWEROFF diff --git a/testing/mm/heaptest/Make.defs b/testing/mm/heaptest/Make.defs new file mode 100644 index 00000000000..529dc87d2ec --- /dev/null +++ b/testing/mm/heaptest/Make.defs @@ -0,0 +1,25 @@ +############################################################################ +# apps/testing/mm/heaptest/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. +# +############################################################################ + +ifneq ($(CONFIG_TESTING_HEAP),) +CONFIGURED_APPS += $(APPDIR)/testing/mm/heaptest +endif diff --git a/testing/mm/heaptest/Makefile b/testing/mm/heaptest/Makefile new file mode 100644 index 00000000000..d2077eb66b4 --- /dev/null +++ b/testing/mm/heaptest/Makefile @@ -0,0 +1,36 @@ +############################################################################ +# apps/testing/mm/heaptest/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. +# +############################################################################ + +include $(APPDIR)/Make.defs + +# Memory Management Test + +PROGNAME = $(CONFIG_TESTING_HEAP_PROGNAME) +PRIORITY = $(CONFIG_TESTING_HEAP_PRIORITY) +STACKSIZE = $(CONFIG_TESTING_HEAP_STACKSIZE) +MODULE = $(CONFIG_TESTING_HEAP) + +MAINSRC = heap_main.c + +CFLAGS += -I$(TOPDIR)/mm/mm_heap + +include $(APPDIR)/Application.mk diff --git a/testing/mm/mm_main.c b/testing/mm/heaptest/heap_main.c similarity index 99% rename from testing/mm/mm_main.c rename to testing/mm/heaptest/heap_main.c index d1d8367ca4d..e0625f9b11e 100644 --- a/testing/mm/mm_main.c +++ b/testing/mm/heaptest/heap_main.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/mm/mm_main.c + * apps/testing/mm/heaptest/heap_main.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/iob/CMakeLists.txt b/testing/mm/iob/CMakeLists.txt similarity index 97% rename from testing/iob/CMakeLists.txt rename to testing/mm/iob/CMakeLists.txt index e569423b9e3..8698d4163c1 100644 --- a/testing/iob/CMakeLists.txt +++ b/testing/mm/iob/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/iob/CMakeLists.txt +# apps/testing/mm/iob/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/iob/Kconfig b/testing/mm/iob/Kconfig similarity index 100% rename from testing/iob/Kconfig rename to testing/mm/iob/Kconfig diff --git a/testing/iob/Make.defs b/testing/mm/iob/Make.defs similarity index 93% rename from testing/iob/Make.defs rename to testing/mm/iob/Make.defs index 3c51ff18f9a..805cbebecd6 100644 --- a/testing/iob/Make.defs +++ b/testing/mm/iob/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/iob/Make.defs +# apps/testing/mm/iob/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_IOB),) -CONFIGURED_APPS += $(APPDIR)/testing/iob +CONFIGURED_APPS += $(APPDIR)/testing/mm/iob endif diff --git a/testing/iob/Makefile b/testing/mm/iob/Makefile similarity index 97% rename from testing/iob/Makefile rename to testing/mm/iob/Makefile index 3ebb8a27fb9..226bc6ef7b1 100644 --- a/testing/iob/Makefile +++ b/testing/mm/iob/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/iob/Makefile +# apps/testing/mm/iob/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/iob/iob_main.c b/testing/mm/iob/iob_main.c similarity index 99% rename from testing/iob/iob_main.c rename to testing/mm/iob/iob_main.c index 7e6e1991d76..69cfa08cbb8 100644 --- a/testing/iob/iob_main.c +++ b/testing/mm/iob/iob_main.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/iob/iob_main.c + * apps/testing/mm/iob/iob_main.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/kasantest/CMakeLists.txt b/testing/mm/kasantest/CMakeLists.txt similarity index 96% rename from testing/kasantest/CMakeLists.txt rename to testing/mm/kasantest/CMakeLists.txt index ff1c65a4ada..ee58fa8ac4d 100644 --- a/testing/kasantest/CMakeLists.txt +++ b/testing/mm/kasantest/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/kasantest/CMakeLists.txt +# apps/testing/mm/kasantest/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/kasantest/Kconfig b/testing/mm/kasantest/Kconfig similarity index 100% rename from testing/kasantest/Kconfig rename to testing/mm/kasantest/Kconfig diff --git a/testing/kasantest/Make.defs b/testing/mm/kasantest/Make.defs similarity index 92% rename from testing/kasantest/Make.defs rename to testing/mm/kasantest/Make.defs index 6760568e9c3..4cd7a76c7d7 100644 --- a/testing/kasantest/Make.defs +++ b/testing/mm/kasantest/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/kasantest/Make.defs +# apps/testing/mm/kasantest/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_KASAN),) -CONFIGURED_APPS += $(APPDIR)/testing/kasantest +CONFIGURED_APPS += $(APPDIR)/testing/mm/kasantest endif diff --git a/testing/kasantest/Makefile b/testing/mm/kasantest/Makefile similarity index 97% rename from testing/kasantest/Makefile rename to testing/mm/kasantest/Makefile index 5f2669ebe6a..82edc831504 100644 --- a/testing/kasantest/Makefile +++ b/testing/mm/kasantest/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/kasantest/Makefile +# apps/testing/mm/kasantest/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/kasantest/kasantest.c b/testing/mm/kasantest/kasantest.c similarity index 99% rename from testing/kasantest/kasantest.c rename to testing/mm/kasantest/kasantest.c index cdb8b5cecdc..72f1353a10e 100644 --- a/testing/kasantest/kasantest.c +++ b/testing/mm/kasantest/kasantest.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/kasantest/kasantest.c + * apps/testing/mm/kasantest/kasantest.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/memstress/CMakeLists.txt b/testing/mm/memstress/CMakeLists.txt similarity index 96% rename from testing/memstress/CMakeLists.txt rename to testing/mm/memstress/CMakeLists.txt index 5247fbd5739..c3854e15e4a 100644 --- a/testing/memstress/CMakeLists.txt +++ b/testing/mm/memstress/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/memstress/CMakeLists.txt +# apps/testing/mm/memstress/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/memstress/Kconfig b/testing/mm/memstress/Kconfig similarity index 100% rename from testing/memstress/Kconfig rename to testing/mm/memstress/Kconfig diff --git a/testing/memstress/Make.defs b/testing/mm/memstress/Make.defs similarity index 92% rename from testing/memstress/Make.defs rename to testing/mm/memstress/Make.defs index 583cf30668e..b9b8cb9235a 100644 --- a/testing/memstress/Make.defs +++ b/testing/mm/memstress/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/memstress/Make.defs +# apps/testing/mm/memstress/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_MEMORY_STRESS),) -CONFIGURED_APPS += $(APPDIR)/testing/memstress +CONFIGURED_APPS += $(APPDIR)/testing/mm/memstress endif diff --git a/testing/memstress/Makefile b/testing/mm/memstress/Makefile similarity index 97% rename from testing/memstress/Makefile rename to testing/mm/memstress/Makefile index ae4729d146e..380f026501d 100644 --- a/testing/memstress/Makefile +++ b/testing/mm/memstress/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/memstress/Makefile +# apps/testing/mm/memstress/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/memstress/memorystress_main.c b/testing/mm/memstress/memorystress_main.c similarity index 99% rename from testing/memstress/memorystress_main.c rename to testing/mm/memstress/memorystress_main.c index ca43636cb90..6d9b2d98dc6 100644 --- a/testing/memstress/memorystress_main.c +++ b/testing/mm/memstress/memorystress_main.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/memstress/memorystress_main.c + * apps/testing/mm/memstress/memorystress_main.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/memtester/.gitignore b/testing/mm/memtester/.gitignore similarity index 100% rename from testing/memtester/.gitignore rename to testing/mm/memtester/.gitignore diff --git a/testing/memtester/CMakeLists.txt b/testing/mm/memtester/CMakeLists.txt similarity index 98% rename from testing/memtester/CMakeLists.txt rename to testing/mm/memtester/CMakeLists.txt index e7a1d72df41..c60eeb69a8c 100644 --- a/testing/memtester/CMakeLists.txt +++ b/testing/mm/memtester/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/memtester/CMakeLists.txt +# apps/testing/mm/memtester/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/memtester/Kconfig b/testing/mm/memtester/Kconfig similarity index 100% rename from testing/memtester/Kconfig rename to testing/mm/memtester/Kconfig diff --git a/testing/memtester/Make.defs b/testing/mm/memtester/Make.defs similarity index 92% rename from testing/memtester/Make.defs rename to testing/mm/memtester/Make.defs index 315646b8b06..0de51e5da83 100644 --- a/testing/memtester/Make.defs +++ b/testing/mm/memtester/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/memtester/Make.defs +# apps/testing/mm/memtester/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_UTILS_MEMTESTER),) -CONFIGURED_APPS += $(APPDIR)/testing/memtester +CONFIGURED_APPS += $(APPDIR)/testing/mm/memtester endif diff --git a/testing/memtester/Makefile b/testing/mm/memtester/Makefile similarity index 97% rename from testing/memtester/Makefile rename to testing/mm/memtester/Makefile index e577d5829e0..8f7056e97ad 100644 --- a/testing/memtester/Makefile +++ b/testing/mm/memtester/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/memtester/Makefile +# apps/testing/mm/memtester/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/ramtest/CMakeLists.txt b/testing/mm/ramtest/CMakeLists.txt similarity index 96% rename from testing/ramtest/CMakeLists.txt rename to testing/mm/ramtest/CMakeLists.txt index 796f818773f..56de353f4fb 100644 --- a/testing/ramtest/CMakeLists.txt +++ b/testing/mm/ramtest/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/ramtest/CMakeLists.txt +# apps/testing/mm/ramtest/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/ramtest/Kconfig b/testing/mm/ramtest/Kconfig similarity index 100% rename from testing/ramtest/Kconfig rename to testing/mm/ramtest/Kconfig diff --git a/testing/ramtest/Make.defs b/testing/mm/ramtest/Make.defs similarity index 92% rename from testing/ramtest/Make.defs rename to testing/mm/ramtest/Make.defs index b521135d6bb..e42ae25872e 100644 --- a/testing/ramtest/Make.defs +++ b/testing/mm/ramtest/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/ramtest/Make.defs +# apps/testing/mm/ramtest/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_RAMTEST),) -CONFIGURED_APPS += $(APPDIR)/testing/ramtest +CONFIGURED_APPS += $(APPDIR)/testing/mm/ramtest endif diff --git a/testing/ramtest/Makefile b/testing/mm/ramtest/Makefile similarity index 97% rename from testing/ramtest/Makefile rename to testing/mm/ramtest/Makefile index 977f0838acf..44ac4ab6268 100644 --- a/testing/ramtest/Makefile +++ b/testing/mm/ramtest/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/ramtest/Makefile +# apps/testing/mm/ramtest/Makefile # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/ramtest/ramtest.c b/testing/mm/ramtest/ramtest.c similarity index 99% rename from testing/ramtest/ramtest.c rename to testing/mm/ramtest/ramtest.c index 77989c42145..500e94251d7 100644 --- a/testing/ramtest/ramtest.c +++ b/testing/mm/ramtest/ramtest.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/testing/ramtest/ramtest.c + * apps/testing/mm/ramtest/ramtest.c * * SPDX-License-Identifier: Apache-2.0 * diff --git a/testing/stressapptest/.gitignore b/testing/mm/stressapptest/.gitignore similarity index 100% rename from testing/stressapptest/.gitignore rename to testing/mm/stressapptest/.gitignore diff --git a/testing/stressapptest/CMakeLists.txt b/testing/mm/stressapptest/CMakeLists.txt similarity index 98% rename from testing/stressapptest/CMakeLists.txt rename to testing/mm/stressapptest/CMakeLists.txt index 4a618c2a012..11fb3788fc6 100644 --- a/testing/stressapptest/CMakeLists.txt +++ b/testing/mm/stressapptest/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/stressapptest/CMakeLists.txt +# apps/testing/mm/stressapptest/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # diff --git a/testing/stressapptest/Kconfig b/testing/mm/stressapptest/Kconfig similarity index 100% rename from testing/stressapptest/Kconfig rename to testing/mm/stressapptest/Kconfig diff --git a/testing/stressapptest/Make.defs b/testing/mm/stressapptest/Make.defs similarity index 91% rename from testing/stressapptest/Make.defs rename to testing/mm/stressapptest/Make.defs index 1b0f51ce594..ce1a15a9b20 100644 --- a/testing/stressapptest/Make.defs +++ b/testing/mm/stressapptest/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/stressapptest/Make.defs +# apps/testing/mm/stressapptest/Make.defs # # SPDX-License-Identifier: Apache-2.0 # @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_TESTING_STRESSAPPTEST),) -CONFIGURED_APPS += $(APPDIR)/testing/stressapptest +CONFIGURED_APPS += $(APPDIR)/testing/mm/stressapptest endif diff --git a/testing/stressapptest/Makefile b/testing/mm/stressapptest/Makefile similarity index 98% rename from testing/stressapptest/Makefile rename to testing/mm/stressapptest/Makefile index e124860436d..0e08acba2c0 100644 --- a/testing/stressapptest/Makefile +++ b/testing/mm/stressapptest/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/testing/stressapptest/Makefile +# apps/testing/mm/stressapptest/Makefile # # SPDX-License-Identifier: Apache-2.0 #