From 127516b4bf63dc922df222825a9a6a1d7eacc214 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 19 May 2026 10:12:32 +0300 Subject: u6: add socket/socketpair kind scaffolding and wiring --- integrationtests/socket_test.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 integrationtests/socket_test.go (limited to 'integrationtests/socket_test.go') 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, + }, + }) +} -- cgit v1.2.3