1#
2# Copyright (c) 2024 Nordic Semiconductor ASA
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6
7rsource "interoperability/Kconfig"
8
9menu "Zephyr"
10source "Kconfig.zephyr"
11endmenu
12
13config IPC_TEST_MSG_HEAP_SIZE
14	int "The heap to copy processed messages"
15	default 512
16	help
17		Internal heap where all the message data would be copied to be processed
18		linearry in tests.
19
20config IPC_TEST_SKIP_CORE_RESET
21	bool "Skip the tests that includes core resetting"
22	help
23		Some of the cores cannot be safely restarted.
24		Skip the tests that require it in such a cases.
25
26config IPC_TEST_BLOCK_SIZE
27	int "Block size for multiple transfers test"
28	default 32
29
30config IPC_TEST_BLOCK_CNT
31	int "Number of blocks for multiple transfers test"
32	default 8000
33
34config IPC_TEST_SKIP_UNBOUND
35	bool "Skip unbound tests"
36	help
37		Whether to skip tests that requires unbound callback functionality.
38