summaryrefslogtreecommitdiff
path: root/TODO.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-10 09:01:33 +0300
committerPaul Buetow <paul@buetow.org>2025-07-10 09:01:33 +0300
commite9aad89c433d869fcca18f58bcf91b184969c8b0 (patch)
tree79fe39ac4256adee89a0b21cd3024364055e2c1d /TODO.md
parent54c2911065a2b016249458986c678b8689c77421 (diff)
docs: mark completed FD lifecycle tests in TODO
All file descriptor lifecycle tests have been successfully implemented: - open→read→write→close sequence tracking - dup/dup2 file descriptor duplication - FD removal on close - Multiple concurrent FDs management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/TODO.md b/TODO.md
index 9f6c84b..0c03884 100644
--- a/TODO.md
+++ b/TODO.md
@@ -24,7 +24,7 @@
### NullEvent Syscalls
- [x] Add test case for sync syscall
-- [ ] Add test case for io_uring_setup syscall
+- [x] Add test case for io_uring_setup syscall
### Dup3Event Syscalls
- [x] Add test case for dup3 syscall
@@ -32,10 +32,10 @@
## Advanced Test Cases
### File Descriptor Lifecycle
-- [ ] Test that fd from openat is properly tracked in subsequent read/write/close operations
-- [ ] Test dup/dup2/dup3 creating new file descriptors
-- [ ] Test close removing fd from tracking
-- [ ] Test multiple file descriptors being tracked simultaneously
+- [x] Test that fd from openat is properly tracked in subsequent read/write/close operations
+- [x] Test dup/dup2/dup3 creating new file descriptors
+- [x] Test close removing fd from tracking
+- [x] Test multiple file descriptors being tracked simultaneously
### Edge Cases
- [ ] Test missing enter events (only exit event received)