summaryrefslogtreecommitdiff
path: root/integrationtests/readwrite_test.go
AgeCommit message (Collapse)Author
2026-03-04Fix Go mistake findings and stabilize integration timingPaul Buetow
2026-02-26Add byte assertions for read/write integration scenariosPaul Buetow
2026-02-25Add TUI StreamEvent constructor and testsPaul Buetow
2026-02-21Add negative integration tests for readwrite syscalls (task 348)Paul Buetow
Add four negative scenarios that verify ior captures tracepoints even when syscalls fail: - readwrite-wronly-read: read from O_WRONLY fd (EBADF) - readwrite-rdonly-write: write to O_RDONLY fd (EBADF) - readwrite-pread-invalid: pread64 with negative offset (EINVAL) - readwrite-pwrite-invalid: pwrite64 with negative offset (EINVAL) Amp-Thread-ID: https://ampcode.com/threads/T-019c818c-ec91-7673-a5ba-e9b2ba53379b Co-authored-by: Amp <amp@ampcode.com>
2026-02-21more on integration testsPaul Buetow