Skip to content

Commit 85a6aaa

Browse files
xiaoxiang781216cederom
authored andcommittedJan 27, 2025
apps/testing: Move irtest/sensortest/resmonitor/monkey to apps/system
Signed-off-by: Xiang Xiao <[email protected]>
1 parent 4e9d907 commit 85a6aaa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+163
-163
lines changed
 

‎testing/irtest/CMakeLists.txt renamed to ‎system/irtest/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/irtest/CMakeLists.txt
2+
# apps/system/irtest/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
@@ -20,19 +20,19 @@
2020
#
2121
# ##############################################################################
2222

23-
if(CONFIG_TESTING_IRTEST)
23+
if(CONFIG_SYSTEM_IRTEST)
2424
file(GLOB CURRENT_SRCS *.cxx)
2525
list(REMOVE_ITEM CURRENT_SRCS main.cxx)
2626
set(SRCS main.cxx ${CURRENT_SRCS})
2727
nuttx_add_application(
2828
NAME
29-
${CONFIG_TESTING_IRTEST_PROGNAME}
29+
${CONFIG_SYSTEM_IRTEST_PROGNAME}
3030
PRIORITY
31-
${CONFIG_TESTING_IRTEST_PRIORITY}
31+
${CONFIG_SYSTEM_IRTEST_PRIORITY}
3232
STACKSIZE
33-
${CONFIG_TESTING_IRTEST_STACKSIZE}
33+
${CONFIG_SYSTEM_IRTEST_STACKSIZE}
3434
MODULE
35-
${CONFIG_TESTING_IRTEST}
35+
${CONFIG_SYSTEM_IRTEST}
3636
SRCS
3737
${SRCS})
3838
endif()

‎testing/irtest/Kconfig renamed to ‎system/irtest/Kconfig

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,35 @@
33
# see the file kconfig-language.txt in the NuttX tools repository.
44
#
55

6-
config TESTING_IRTEST
6+
config SYSTEM_IRTEST
77
tristate "IR driver test"
88
default n
99
depends on DRIVERS_RC
1010
---help---
1111
Enable the IR driver test
1212

13-
if TESTING_IRTEST
13+
if SYSTEM_IRTEST
1414

15-
config TESTING_IRTEST_PROGNAME
15+
config SYSTEM_IRTEST_PROGNAME
1616
string "Program name"
1717
default "irtest"
1818
---help---
1919
This is the name of the program that will be used when the NSH ELF
2020
program is installed.
2121

22-
config TESTING_IRTEST_PRIORITY
22+
config SYSTEM_IRTEST_PRIORITY
2323
int "IR driver test task priority"
2424
default 100
2525

26-
config TESTING_IRTEST_STACKSIZE
26+
config SYSTEM_IRTEST_STACKSIZE
2727
int "IR driver test stack size"
2828
default DEFAULT_TASK_STACKSIZE
2929

30-
config TESTING_IRTEST_MAX_NIRDEV
30+
config SYSTEM_IRTEST_MAX_NIRDEV
3131
int "The Maximum number of IR devices supported"
3232
default 2
3333

34-
config TESTING_IRTEST_MAX_SIRDATA
34+
config SYSTEM_IRTEST_MAX_SIRDATA
3535
int "The Maximum size of sending data in unsigned int"
3636
default 64
3737

0 commit comments

Comments
 (0)
Please sign in to comment.