diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-01 11:19:19 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-01 11:19:19 +0300 |
| commit | 55aa404fc93deeff27205b3cc9af407ab071be4b (patch) | |
| tree | 8e35e1cdfce0e3057920f5697babb942c00cd673 /cmd/ioworkload/scenarios.go | |
| parent | 96065ab5c13295f0c2ec810cf540c229c41e2647 (diff) | |
test(integration): add Misc family tracing coverage
Add a misc-basic ioworkload scenario and an end-to-end integration test
for the previously-uncovered Misc syscall family.
The scenario exercises only the safe, unprivileged, non-blocking,
side-effect-free Misc syscalls: getcpu (raw SYS_GETCPU), uname /
sys_newuname (unix.Uname), sysinfo (unix.Sysinfo), vmsplice into a
self-created and self-drained pipe with a tiny buffer, and alarm(0) to
cancel any pending alarm. Code comments document why the remaining Misc
syscalls are intentionally excluded (CAP_SYS_ADMIN / global host
mutation, CAP_SYS_RAWIO / x86-only, Linux 6.13+ availability,
runtime-managed, or not user-callable).
misc_test.go asserts enter_getcpu, enter_newuname, and enter_sysinfo are
each traced at least once for the ioworkload process, restricting tracing
to the issued syscalls and keeping the existing PID/comm hermetic guards.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'cmd/ioworkload/scenarios.go')
| -rw-r--r-- | cmd/ioworkload/scenarios.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/ioworkload/scenarios.go b/cmd/ioworkload/scenarios.go index f069596..3505984 100644 --- a/cmd/ioworkload/scenarios.go +++ b/cmd/ioworkload/scenarios.go @@ -138,6 +138,7 @@ var scenarios = map[string]func() error{ "aio-setup-einval": aioSetupEinval, "aio-submit": aioSubmit, "signals-basic": signalsBasic, + "misc-basic": miscBasic, } func makeTempDir(prefix string) (string, func(), error) { |
