diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-19 10:12:32 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-19 10:12:32 +0300 |
| commit | 127516b4bf63dc922df222825a9a6a1d7eacc214 (patch) | |
| tree | 3839a2f6a7f4f1bc713690678fc003d4e2be8a8c /integrationtests | |
| parent | 32a19cf9fb1344c9b1a61054d7cf2c90edc3708a (diff) | |
u6: add socket/socketpair kind scaffolding and wiring
Diffstat (limited to 'integrationtests')
| -rw-r--r-- | integrationtests/socket_test.go | 21 |
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, + }, + }) +} |
