mbox series

[v2,0/2] selftests: sched: Add default target support for sched

Message ID 20250221115750.631990-1-sinadin.shan@oracle.com (mailing list archive)
Headers show
Series selftests: sched: Add default target support for sched | expand

Message

Sinadin Shan Feb. 21, 2025, 11:57 a.m. UTC
This patch series introduces changes to add default build support for
the sched tests in selftests.

The only test under sched is cs_prctl_test which validates cookies when
core scheduling is in effect. This test fails on systems where core
scheduling is disabled. The patch series also modifies this behaviour to
gracefully skip the test on such systems.

For example, such a test skip would look like:
TAP version 13
1..1
 timeout set to 45
 selftests: sched: cs_prctl_test
 Checking for CONFIG_SCHED_CORE support
 Core scheduling not enabled in kernel, hence skipping tests
ok 1 selftests: sched: cs_prctl_test # SKIP

and a successful run:
TAP version 13
1..1
 timeout set to 45
 selftests: sched: cs_prctl_test
 Checking for CONFIG_SCHED_CORE support
 CONFIG_SCHED_CORE=y
.
.
.
 SUCCESS !!!
ok 1 selftests: sched: cs_prctl_test

Signed-off-by: Sinadin Shan <sinadin.shan@oracle.com>
---
v2:
* Add patch to skip cs_prctl_test on core scheduling disabled systems
* v1 link: https://lore.kernel.org/all/20250219064658.449069-1-sinadin.shan@oracle.com
--- 

Sinadin Shan (2):
  selftests: sched: add sched as a default selftest target
  selftests: sched: skip cs_prctl_test for systems with core scheduling
    disabled

 tools/testing/selftests/Makefile              |  1 +
 tools/testing/selftests/sched/cs_prctl_test.c | 29 ++++++++++++++++++-
 2 files changed, 29 insertions(+), 1 deletion(-)