1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
load("//tools:defs.bzl", "go_library", "go_test")
package(
licenses = ["notice"],
)
go_library(
name = "testbench",
srcs = [
"connections.go",
"dut.go",
"dut_client.go",
"layers.go",
"rawsockets.go",
"testbench.go",
],
visibility = ["//test/packetimpact:__subpackages__"],
deps = [
"//pkg/abi/linux",
"//pkg/binary",
"//pkg/hostarch",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/header",
"//pkg/tcpip/seqnum",
"//test/packetimpact/proto:posix_server_go_proto",
"@com_github_google_go_cmp//cmp:go_default_library",
"@com_github_google_go_cmp//cmp/cmpopts:go_default_library",
"@com_github_mohae_deepcopy//:go_default_library",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//keepalive:go_default_library",
"@org_golang_x_sys//unix:go_default_library",
"@org_uber_go_multierr//:go_default_library",
],
)
go_test(
name = "testbench_test",
size = "small",
srcs = ["layers_test.go"],
library = ":testbench",
deps = [
"//pkg/tcpip",
"//pkg/tcpip/header",
"@com_github_mohae_deepcopy//:go_default_library",
],
)
|