Skip to content

Commit

Permalink
testing: add iob test
Browse files Browse the repository at this point in the history
Signed-off-by: hujun5 <[email protected]>
  • Loading branch information
hujun260 committed Nov 14, 2024
1 parent 59855a1 commit 5d70fc2
Show file tree
Hide file tree
Showing 5 changed files with 510 additions and 0 deletions.
33 changes: 33 additions & 0 deletions testing/iob/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ##############################################################################
# apps/testing/iob/CMakeLists.txt
#
# 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_IOB)
nuttx_add_application(
NAME
${CONFIG_TESTING_IOB_PROGNAME}
PRIORITY
${CONFIG_TESTING_IOB_PRIORITY}
STACKSIZE
${CONFIG_TESTING_IOB_STACKSIZE}
MODULE
${CONFIG_TESTING_IOB}
SRCS
iob_main.c)
endif()
30 changes: 30 additions & 0 deletions testing/iob/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config TESTING_IOB
tristate "\"Test iob\" testing"
default n
select MM_IOB
---help---
Enable the \"Test iob!\" testing.

if TESTING_IOB

config TESTING_IOB_PROGNAME
string "Program name"
default "iob"
---help---
This is the name of the program that will be used when the NSH ELF
program is iob.

config TESTING_IOB_PRIORITY
int "Iob task priority"
default 100

config TESTING_IOB_STACKSIZE
int "Iob stack size"
default DEFAULT_TASK_STACKSIZE

endif
23 changes: 23 additions & 0 deletions testing/iob/Make.defs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
############################################################################
# apps/testing/iob/Make.defs
#
# 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_IOB),)
CONFIGURED_APPS += $(APPDIR)/testing/iob
endif
34 changes: 34 additions & 0 deletions testing/iob/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
############################################################################
# apps/testing/iob/Makefile
#
# 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

# Iob ! built-in application info

PROGNAME = $(CONFIG_TESTING_IOB_PROGNAME)
PRIORITY = $(CONFIG_TESTING_IOB_PRIORITY)
STACKSIZE = $(CONFIG_TESTING_IOB_STACKSIZE)
MODULE = $(CONFIG_TESTING_IOB)

# Iob! Example

MAINSRC = iob_main.c

include $(APPDIR)/Application.mk
Loading

0 comments on commit 5d70fc2

Please sign in to comment.