1# Note: Re: slow vs fast
2#
3# Some platforms such as native_sim, qemu_riscv32, qemu_riscv64
4# complete these tests almost instantaneously because of qemu timer
5# quirks ("time warp") even though the test reports that it completes
6# in e.g. 14 s. We can take advantage of that for fast tests on each PR
7# but we also want to exercise this code path during daily builds or
8# otherwise when users specify "twister --enable-slow".
9#
10# As other platforms are added with varying timer frequencies, increase
11# timeout as necessary.
12tests:
13  kernel.timer.cycle64:
14    tags:
15      - kernel
16      - timer
17    filter: CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER
18    arch_exclude: posix
19    timeout: 140
20    slow: true
21  kernel.timer.cycle64.fast:
22    tags:
23      - kernel
24      - timer
25    filter: CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER
26    arch_allow: posix
27