blob: a48d628628e9c55c69d2f0064a263d696b8f7618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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,
},
})
}
|