summaryrefslogtreecommitdiff
path: root/integrationtests
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-19 10:12:32 +0300
committerPaul Buetow <paul@buetow.org>2026-05-19 10:12:32 +0300
commit127516b4bf63dc922df222825a9a6a1d7eacc214 (patch)
tree3839a2f6a7f4f1bc713690678fc003d4e2be8a8c /integrationtests
parent32a19cf9fb1344c9b1a61054d7cf2c90edc3708a (diff)
u6: add socket/socketpair kind scaffolding and wiring
Diffstat (limited to 'integrationtests')
-rw-r--r--integrationtests/socket_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/integrationtests/socket_test.go b/integrationtests/socket_test.go
new file mode 100644
index 0000000..a48d628
--- /dev/null
+++ b/integrationtests/socket_test.go
@@ -0,0 +1,21 @@
+package integrationtests
+
+import "testing"
+
+func TestSocketBasic(t *testing.T) {
+ runScenario(t, "socket-basic", []ExpectedEvent{
+ {
+ Tracepoint: "enter_socket",
+ MinCount: 1,
+ },
+ })
+}
+
+func TestSocketpairBasic(t *testing.T) {
+ runScenario(t, "socketpair-basic", []ExpectedEvent{
+ {
+ Tracepoint: "enter_socketpair",
+ MinCount: 1,
+ },
+ })
+}