Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: input/api: limit to 1 CPU for thread mode test #79349

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all 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
7 changes: 7 additions & 0 deletions tests/subsys/input/api/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ tests:
input.api.thread:
extra_configs:
- CONFIG_INPUT_MODE_THREAD=y
# There is a check to see if it is no longer able to push more
# messages into a full queue. When these is another CPU consuming
# messages, the queue would not be full at that point. A new message
# can be pushed into the queue and thus failing the "full queue"
# check. So limit this to 1 CPU only so this check's assumption
# can be fulfilled.
- CONFIG_MP_MAX_NUM_CPUS=1
input.api.synchronous:
extra_configs:
- CONFIG_INPUT_MODE_SYNCHRONOUS=y
Loading