1# Copyright (c) 2023, Meta 2# SPDX-License-Identifier: Apache-2.0 3 4# Options specific to clock.c / test_realtime 5 6config TEST_CLOCK_RT_ITERATIONS 7 int "Number of iterations to check clock_gettime() reliability" 8 range 10 100 9 default 20 10 help 11 This option is specific to posix_apis.test_realtime in clock.c 12 13config TEST_CLOCK_RT_SLEEP_MS 14 int "Time to sleep between iterations in milliseconds" 15 range 50 1000 16 default 100 17 help 18 This option is specific to posix_apis.test_realtime in clock.c 19 20config TEST_CLOCK_RT_ERROR_MS 21 int "Maximum overshoot (error) in milliseconds" 22 range 10 500 23 default 10 24 help 25 This option is specific to posix_apis.test_realtime in clock.c 26 27config TEST_SEM_N_LOOPS 28 int "Number of loops in semaphore test" 29 range 16 1024 30 default 32 31 help 32 This option is specific to semaphore.test_named_semaphore in semaphore.c 33 34source "Kconfig.zephyr" 35