Lines Matching full:slow
305 To mark a test case as slow, you can also use ``KUNIT_CASE_SLOW(test_name)``.
306 This is a helpful macro as the slow attribute is the most commonly used.
340 # example_test.speed: slow
374 kunit.py run --filter speed=slow
382 kunit.py run --filter "speed>slow"
384 This example will run all tests with speeds faster than slow. Note that the
393 kunit.py run --filter "speed>slow, module=kunit_example_test"
397 the filter as a module param: ``kunit.filter="speed>slow, speed<=normal"``.
424 This attribute indicates the speed of a test's execution (how slow or fast the
428 "slow", or "very_slow". The assumed default speed for tests is "normal". This
431 this could be marked as "slow" or "very_slow".
434 of a test case to "slow".