Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/utest/kernel/object.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_UTEST_OBJECT_TC=y

# dependencies
CONFIG_RT_USING_CI_ACTION=y
CONFIG_RT_USING_DEVICE=y
CONFIG_RT_USING_SEMAPHORE=y
3 changes: 3 additions & 0 deletions .github/workflows/utest_auto_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
config_file:
- "default.cfg"

# kernel
# - "kernel/object.cfg"

# cpp11
# - "cpp11/cpp11.cfg"

Expand Down
10 changes: 6 additions & 4 deletions examples/utest/testcases/kernel/Kconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
menu "Kernel Testcase"

config UTEST_OBJECT_TC
bool "object test"
default y

config UTEST_MEMHEAP_TC
bool "memheap stability test"
default y
Expand All @@ -14,6 +10,12 @@ config UTEST_SMALL_MEM_TC
default y
depends on RT_USING_SMALL_MEM

config UTEST_OBJECT_TC
select RT_USING_DEVICE
select RT_USING_SEMAPHORE
bool "object test"
default n

config UTEST_SLAB_TC
bool "slab test"
default n
Expand Down
Loading