diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-01 15:55:21 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-01 15:55:21 +0300 |
| commit | 1fa1cc46a0e34a25b1926837ba663b2446b8dc7c (patch) | |
| tree | 363c59d6e681d754c6b5675271f226b3fed36572 /integrationtests/sched_test.go | |
| parent | 5057bd968b33fcb4bcf337730e961e53fcb54645 (diff) | |
test(sched): assert sched_rr_get_interval enter in TestSchedBasic
The sched-basic scenario already issues sched_rr_get_interval(0, &ts)
via schedQueryPriorityRange, but TestSchedBasic only asserted the other
sched_get* queries. Add an explicit enter_sched_rr_get_interval
assertion to lock in its KindNull/UNCLASSIFIED tracing end-to-end.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'integrationtests/sched_test.go')
| -rw-r--r-- | integrationtests/sched_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/integrationtests/sched_test.go b/integrationtests/sched_test.go index 74cd545..204db5a 100644 --- a/integrationtests/sched_test.go +++ b/integrationtests/sched_test.go @@ -35,5 +35,6 @@ func TestSchedBasic(t *testing.T) { {Tracepoint: "enter_sched_getaffinity", Comm: "ioworkload", MinCount: 1}, {Tracepoint: "enter_sched_getscheduler", Comm: "ioworkload", MinCount: 1}, {Tracepoint: "enter_sched_getparam", Comm: "ioworkload", MinCount: 1}, + {Tracepoint: "enter_sched_rr_get_interval", Comm: "ioworkload", MinCount: 1}, }) } |
