summaryrefslogtreecommitdiff
path: root/integrationtests/flock_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrationtests/flock_test.go')
-rw-r--r--integrationtests/flock_test.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/integrationtests/flock_test.go b/integrationtests/flock_test.go
new file mode 100644
index 0000000..667f0fb
--- /dev/null
+++ b/integrationtests/flock_test.go
@@ -0,0 +1,22 @@
+package integrationtests
+
+import "testing"
+
+// TestFlockBasic asserts end-to-end tracing of the FamilyFS flock syscall. The
+// flock-basic scenario opens a temp file, takes an exclusive advisory lock
+// (LOCK_EX) and releases it (LOCK_UN), then closes the file.
+//
+// flock is captured as KindFd at args[0]; ior resolves that fd to the
+// underlying file path via the procfd cache, so the enter_flock record carries
+// the temp filename. Its return value is UNCLASSIFIED, so we only assert the
+// enter path (path + count), not a byte total.
+func TestFlockBasic(t *testing.T) {
+ runScenario(t, "flock-basic", []ExpectedEvent{
+ {
+ PathContains: "flockfile.txt",
+ Tracepoint: "enter_flock",
+ Comm: "ioworkload",
+ MinCount: 1,
+ },
+ })
+}