1# Copyright (c) 2023 Meta
2# SPDX-License-Identifier: Apache-2.0
3
4source "Kconfig.zephyr"
5
6config TEST_NUM_LOGS
7	int "Number of log messages per test"
8	default 5000
9
10config TEST_INPUT_LOG_RATE
11	int "Maximal input log rate for the test (in msg/s)"
12	default 1000
13	help
14	  Specify the maximum rate at which messages will be logged from the
15	  application.
16
17config TEST_OUTPUT_LOG_RATE
18	int "Maximal output log rate for the test (in msg/s)"
19	default 1000
20	help
21	  Specify the maximum rate at which log messages will be handled by
22	  the log backend.
23