diff options
| author | Paul Buetow <paul@buetow.org> | 2025-10-08 23:38:29 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-10-08 23:38:29 +0300 |
| commit | 2fc3b42d2aeb816bb8d36ad4fd078a55005a25e2 (patch) | |
| tree | 5961a2c5e7567dcc7aa55eb8fdbfe7e9d70c98e8 /internal/eventloop_test.go | |
| parent | d1e84afcac28a294f9b62474bd037fa983229de6 (diff) | |
clarify, that some tests are there already for FCNTL
Diffstat (limited to 'internal/eventloop_test.go')
| -rw-r--r-- | internal/eventloop_test.go | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/internal/eventloop_test.go b/internal/eventloop_test.go index 356dcf9..7a6ce9d 100644 --- a/internal/eventloop_test.go +++ b/internal/eventloop_test.go @@ -2,12 +2,13 @@ package internal import ( "context" - "ior/internal/event" - "ior/internal/file" - "ior/internal/types" "syscall" "testing" "time" + + "ior/internal/event" + "ior/internal/file" + "ior/internal/types" ) const ( @@ -997,11 +998,6 @@ func verifyCommName(t *testing.T, el *eventLoop, tid uint32, expectedComm string // Test fcntl F_SETFL flag modification func makeFcntlSetFlagsTestData(t *testing.T) (td testData) { - // TODO: Investigate why this test is failing - temporarily disabled - // The test fails with panic "expected a file.FdFile" during fcntl event processing - // Returning empty test data to skip this test case - // return td - fd := uint32(60) filename := "fcntl_setfl_test.txt" |
