summaryrefslogtreecommitdiff
path: root/internal/dup_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-04-15 17:29:07 +0300
committerPaul Buetow <paul@buetow.org>2025-04-15 17:29:07 +0300
commit24753df2d21112ea1ddc6498b521f7f42dd7c708 (patch)
tree1154f41153a96a55f4465489cc812afe5c96d2f8 /internal/dup_test.go
parent12759c56082abcc6b0eb70b5a5981e9ca61faa08 (diff)
more on testing
Diffstat (limited to 'internal/dup_test.go')
-rw-r--r--internal/dup_test.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/internal/dup_test.go b/internal/dup_test.go
deleted file mode 100644
index c06adfc..0000000
--- a/internal/dup_test.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package internal
-
-import (
- "ior/internal/types"
- "syscall"
- "testing"
-)
-
-// TODO: Finish this test
-func TestDup3(t *testing.T) {
- // loop := newEventLoop()
-
- dup3Event := types.Dup3Event{
- EventType: types.ENTER_DUP3_EVENT,
- TraceId: types.SYS_ENTER_DUP3,
- Time: 0,
- Pid: 1,
- Tid: 2,
- Fd: 100,
- Flags: syscall.O_CLOEXEC,
- }
-
- t.Log(dup3Event.Bytes())
-}